cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

ChengLiangcl
Node
since ‎10-12-2020
‎06-01-2022

User Statistics

  • 15 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Please keep the following things in mind: I was trying to create a subject node, the format of the node will be title: "Python", cp: 6, prerequisite: "cs23" OR "Ics12" prohibited: "cs207" OR "asd207" OR cs119" How can I create attributes for prerequ...
CREATE (n:Tweet {id:'123', title:'A'}) CREATE (cl1:TweetLeaf {id:'234', title:'IT Team', reply_to:'123'}) CREATE (cl2:TweetLeaf {id:'testingTeam', title:'TESTING Team', reply_to:'234'}) CREATE (cl3:TweetLeaf {id:'588', title:'TESTING Team', reply_to:...
For example, I create multiple Tweet nodes, these tweet nodes have id,reply_to id and retweet_id. Assuming I have 6 nodes. The code below shows the nodes I create. CREATE (n:Tweet:Node {id:'123', title:'A'}); CREATE (cl:TweetLeaf:Node {id:'234', titl...