I need to execute the following query:
CREATE (m: Temp {val1: <variable>})
I know there exists save_node
functionality but I don't want to use that.
I tried the following syntax but it didn't work
connection.execute("CREATE (m: Temp {{val1: variable}}})
This seems to work only if the variable is a for loop iterator.