This cypher query is working on Neo4j Browser but its not working with javascript driver. It returns 0 record. I need ID of node a.
const result: v1.StatementResult = await session.run(
'MATCH (f:Firma) WHERE id(f) = $fId MERGE (f)-[y:YASIYOR{t...
Thanks for the reply,
I found the problem. When I try to use MATCH and MERGE in the same session.run, that is not works in Javascript Driver but it works on Neo4j's browser. But when i run MATCH and MERGE at different session.run function, that works...