I created my database in "SCHEMA-Editor" from structr.org. I have two nodes "Project" and "ProjectManager" and relationship between these is "MEMBER". I made a cypher query to create the graph like this:
MATCH (a:Project),(b:ProjectManager)
WHERE a.name = 'X' AND b.name = 'Y'
CREATE (a)-[r:MEMBER]->(b)
RETURN r,a,b;
And i expected to display the graph, but i got this message: "MEMBER.id must_not_be_empty"