How to create new nodes by parameters

130 Views Asked by At

I want to create new node and its properties by passing parameters to it using cypher queries:

@app.route('/enter',methods=['post'])
def enter_products():
     results = graph.cypher.execute("CREATE (a:Products{"name","age"})") 
1

There are 1 best solutions below

2
On

You can just pass in a map as parameters, each entry in the parameter map is available as {key} parameter in the query:

@app.route('/enter',methods=['post'])
def enter_products():
     params = {"data": {"name":"Gokul","age":23}}
     results = graph.cypher.execute("CREATE (a:Products {data})",params)