How to set label to a node while creating it. I'm using following query to create the node:
session.run(query="CREATE (x) set x = $dict_param", parameters={'dict_param' : {'itemName':'Jacket', 'price':2199}) and want to set label 'itemName' to it.
Hello @ranjanr331
You have to use APOC since it's not possible in classic Cypher.
session.run(
query="CALL apoc.create.node([$dict_param.itemName], $dict_param)",
parameters={'dict_param': {'itemName': 'Jacket', 'price': 2199}
)
Regards,
Cobra
1 Like
okay. Will try this one