To create and save a Node in Neo4J using py2Neo. We do.
tx = graph.begin():
node = Node('Label', property='A'})
tx.create(node)
As far as create a node with multiple labels. The documentation seems quiet. Is something possible along the lines.
tx = graph.begin()
node = Node(*labels, **properties)
tx.create(node) # possible
Or do we have to resort to cyper.run
to use raw cypher.
Thanks.