Answers for "create uuid to exist node neo4j"

0

create uuid to exist node neo4j

MATCH (p:Person) 
WHERE NOT EXISTS(p.id)
SET p.id = apoc.create.uuid()
RETURN p
Posted by: Guest on October-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language