I need to form a query using neo4j-ogm (spring-data-neo4j), which is equivalent to this Cypher:
MATCH (n:Employee)
WHERE NOT n:Manager AND NOT n:Support
RETURN n;
Is it possible with Filters (or other means) from neo4j-ogm? Manager and Support are subclasses of Employee in the model.
Thank you.