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.

john3haris
Node Clone
since ‎04-09-2020
‎10-19-2022

User Statistics

  • 40 Posts
  • 0 Solutions
  • 3 Kudos given
  • 17 Kudos received

User Activity

I'm trying to check if a condition is met to return the desired node and if not met to not return anything. But in my case when the condition is not met a "null" node is returned (probably as expected). I'm trying to see if a (user1) has "protected =...
I have just migrated and the stream was very helpful, but one thing that seems to be off is when retrieving nested data. Let's say I have a Post type and some of its properties need to have a custom @cypher directive or a relationship directive, lik...
Hello again. I'm trying to return a (Post ) node using Graphql. the Post type looks like this. type Post { id: ID post_id: String user_id: String text: String post_type: String user_liked: Boolean author_info: User text_post: TextPost...
I'm trying to create a mutation that will rely on an input type that has inside of it an input type like this: input GroupInput { group_id: String group_founder_id: String group_name: String group_theme_colors: GroupThemeColorsInput } i...
Lets say I have created a user and I want to update their display name or bio using a mutation, Is there any way to pass a Json object to the mutation and for Neo4j to know exactly what to update?