Alright. Thanks. I was able to leverage the Driver.executableQuery method to get the output I needed. Thankfully I found the nodes and relationships there after I ran my path query.
Is there an easy way to match on multiple property values?
I have a simple query query MATCH p=(:Node {text:$text})-[:RELATIONSHIP *0..2]->() return p and I would like to match on multiple text values. The resulting graph could be overlapping so in case queries for two values have a node in common is there a way to connect the graphs?
Edit:
Oh okay I found the answer here: Finding common complete path between multiple input nodes - #3 by kiriti.chinthapalli
Thanks a lot