neo4j - Cyper - odd error when creating relationship -
i've got following query, responds cryptic error message of "invalid input 'h': expected 'i/i' (line 2, column 2)"
here's query: create unique (c:accountcharge)-[:account_charged]->(a:account) (a.id = "a7f7def6-8f2b-4b21-bfac-dab2f6e6eaae") , (c.id = "666b1865-e29d-455b-abb0-50d679952543")
both nodes exist, , can't see there's break anywhere, neo4j not @ all.
the query's being created c# neo4jclient, retyping manually still same error, it's not hidden character or anything.
where can used match clause.
the expected i because cypher possible clause after create with clause, second letter instead of h.
you should first match 2 nodes , create unique relationship afterwards
Comments
Post a Comment