Hi there, In Neo4j OGM I can do filter with a loadAll, but I wish to filter on a related entity's properties.
For example a Person entity belongs to a Group entity, I want to find all Person's that have a related Group with some property. I see the query to find a person with a particular login when doing queryAll appears to be the following. MATCH (n:`MMLPerson`) WHERE n.`login` = "testadmin" WITH n MATCH p=(n)-[*0..1]-(m) RETURN p, ID(n) I cannot find a way to restrict the result by the related entity Group using loadAll. How can I return all MMLPerson entities with their related entities attached AND filter by the Group's property? Thanks, Philip -- 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.
