Subject: | Problem with Indexes |
my $main_idx = new REST::Neo4p::Index('node','medicago_truncatula_3_5v5');
# my $main_idx = new REST::Neo4p::Index('node', 'main');
warn $main_idx->name();
returns '5' from name(),
Uncommenting the second line, name() returns 'main'
Both are real indexes in my Neo4j db. The first does not work
This one: my $main_idx = new REST::Neo4p::Index('node',
'one_two_three_four_five_v5');
also returns '5' from name(), removing the 5 after the v make it return
the full name appropriately.
I tried two different versions of Neo4j with this as well.
Thanks!
--Joseph