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.

francesco_venic
Node
since ‎09-12-2019
‎06-01-2022

User Statistics

  • 5 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hello, I just started using neo4j and I have some doubt on how should I model a users->post->comments schema....actually I did something like this: type User { uuid: ID! username: String posts: [Post] @relation(name: "HAS_POSTS", direction: "OU...
I've searched around different site but I have not found a solution yet, I have this kind of schema: type Friendship @relation(name: "FOLLOW") { from: User to: User timestamp: Int } type User { uuid: ID! email: String username: String ...