In the query below I am passing in two strings, $node and $targetlabel. The first one works, the second creates an error.
query := `MATCH ({name:$node})-[e]-(n:$targetlabel) RETURN DISTINCT n.name as name, n.detail as detail, TYPE(e) as link`
rec...
I am working on a query that as far as I can tell should work. However, it's not. I need to see the actual query that's hitting neo4j. Is that possible? Currently using 4.4 - GitHub - neo4j/neo4j-go-driver: Neo4j Bolt Driver for Go with Bolt.
I don't...