I'm following multiple tutorials and all demonstrate the same Cypher query so it must be correct but I'm getting following error:
Neo.ClientError.Statement.SyntaxError Unknown procedure output:
node
Code:
call spatial.addWKTLayer('geom', 'wkt')
------- THEN --------
MATCH (v:Venue) WITH collect(v) as venues
CALL spatial.addNodes('geom', venues)
YIELD node
RETURN count(*)
Usually that means you're YIELDing the wrong variable from a procedure call. Try checking the signature of the procedure you're calling for what variables are yielded: