In my Data set there is a node that has properties like those
ex) node 4 name "personid_10" label "Andrew"
And, among all of the nodes, half of them have both of 'name' and 'label' but rest of them only have 'name' property, and this point is very important!
When I built a query like this,
start n=node:nodes(name="personid_10")
return n;
I could get satisfied result of this query.
but in other other case(use 'label' property)
start n=node:nodes(label="Andrew")
return n;
couldn't get any result.
Is there any solution for me?...
labelproperty? This is manual operation in pre-2.0 e.g. in Javaindex().forNodes("nodes").add(node,"label","Andrew")- Michael Hunger