Query
match (u:SomePersonBean{sex:"m"}) return u limit 10
this query will return 10 result! But...
start u=node:SomePersonBean(sex="m") return u limit 10
this query return 0 result! WHY?
What the difference between the following two neo4j cypher querys ?
Which uses the index?
Which uses the label-base index?
Which uses the Legacy index?