kantube
unread,Aug 7, 2012, 10:32:10 PM8/7/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ne...@googlegroups.com
The two cypher statements should do the same
START appNode=node(2), imageNode=node(54)
CREATE appNode-[:Business]->(businessNode {NodeType:"Business"})-[:Content]-> imageNode
RETURN businessNode
START appNode=node(2), imageNode=node(54)
CREATE appNode-[:Business]->(businessNode {NodeType:"Business"}),
businessNode-[:Content]-> imageNode
RETURN businessNode
The first statement works correctly, creates the node with the property
however the second statement creates the node but does not create the property.
... the second statement is just a part of a larger cypher statement and i used the alternate syntax for readability.
fyi: i just started using the Create command and really like it (current issue notwithstanding).