Hi, I'm running the following query using the neo4j driver for node js.
MATCH (u:User)
WHERE u.id = $uuid
CREATE (m:Mood {title : $title, text:$text, emoji:$emojiCode, timestamp : $timestamp,createdBy : u.id, id : apoc.create.uuid() })
MERGE (u)-[r:...