Using the cypher-dsl, Is it possible to create a query like,
MATCH p = (n:Movie) RETURN p
Seems like Cypher.path("p").definedBy(..)
only takes a RelationshipPattern
and not a Node
, so I can't do something like,
Cypher.path("p").definedBy(node("Movie"))
Wondering if there is way to achieve this
Thanks