Question: Using the Cypher query language, how would you create two nodes in a Neo 4 j database representing individuals named Alice and Bob, and establish

Using the Cypher query language, how would you create two nodes in a Neo4j database
representing individuals named Alice and Bob, and establish a relationship where Alice follows Bob?
Answers:
1. CREATE (a:Person {name: Alice}),(b:Person {name: Bob})-[:FOLLOWS]->(a)
2. CREATE (a:Person {name: Alice}),(b:Person {name: Bob}) INSERT (a)-[:FOLLOWS]->(b)
3. CREATE (a:Person {name: Alice})-[:FOLLOWS]->(b:Person {name: Bob})
4. INSERT (a:Person {name: Alice}),(b:Person {name: Bob}) INSERT (a)-[:FOLLOWS]->(b)
5. INSERT (a:Person {name: Alice}),(b:Person {name: Bob}),(a)-[:FOLLOWS]->(b)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!