Performance Issue in node creation
Trying to run a query to create/merge node from nodejs.It takes around 2 to 3 seconds to execute the below code snippet.Code snippet :const query = "CREATE (a:User {uid:$uid,name:$name}) RETURN a";const params = {uid:"xyz001",name:"xyz"};const result...