Let's assume there's a property named age. Create an index on the property for fast retrieval.
MATCH (user:User) where user.age=30 return user That should work. But I'd like to use comparison like this. MATCH (user:User) where user.age > 30 return user Is that supposed to work? It does not seem that it's working. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
