Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
02-03-2020 04:44 AM
db.cypher_query("MATCH (a:User_A {name:{N}}) RETURN a", {"N": "kumarMary"} )--->it is working
i want check for Node also like
db.cypher_query("MATCH (a:{Node:{N}}) RETURN a",{"N":"User_A"} )---->not working but i want take input as a label and apply query.
02-03-2020 04:59 AM
It is not really possible to pass the label as a parameter. But you can do a workaround MATCH (a) WHERE {N} IN labels(a) RETURN a",{"N":"User_A"}
02-03-2020 08:23 PM
thank you so much...
All the sessions of the conference are now available online