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).