Kindly create like below
Create(p1:Persona{name:'Paul'}) -[:HAS_Bought_AT{amount:'986', time:'4/17/2014', status:'Undisputed'}]->(P1:Product{name:'Just_Brew_it'})
And with best practice try to create node first and then relationship.
like
Create(p1:Persona{name:'Paul'}) Create (P1:Product{name:'Just_Brew_it'}) Create (p1) -[:HAS_Bought_AT{amount:'986', time:'4/17/2014', status:'Undisputed'}]->(P1)
Hi,
Can you check a couple things? Were your nodes still defined when you ran the query, for example (Paul)? Also, are you not seeing the Person node names in the Neo4j Browser? Have you checked to see if it's available in Caption option of the node in the Browswer?