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"})")
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"})")
Copyright © 2021 Jogjafile Inc.
You can just pass in a map as parameters, each entry in the parameter map is available as
{key}
parameter in the query: