neo4j - Cypher 2.0 - MERGE operation -


are there prereqs use merge operation? merge examples neo4j documentation such as:

merge (robert:critic) return robert, labels(robert) 

return:

an unknown error occurred, unable retrieve result you.

by way, "live" examples documentation don't work either:

query: merge (robert:critic)  return robert, labels(robert) error: invalid start of query "merge (robert:critic) return robert, labels(robert)"  ^ 

okay, bug. opening report on github.

the following works fine btw:

start _0 = node(0) _0 merge (robert:critic) return robert, labels(robert) 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -