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.

chad
Node
since ‎05-11-2019
‎06-01-2022

User Statistics

  • 2 Posts
  • 0 Solutions
  • 0 Kudos given
  • 4 Kudos received

User Activity

Hello, I am using neo4j-graphql.js' augmented schema. So I have pagination out of the box with first and offset. (Thanks!) However, I am struggling to get the total count so the UI can show the pages. I've seen a lot of connection or relay pagination...
Hello, I'm getting started with GraphQL. Long time Neo4j user. My question is how does one use multiple labels? How would I do the following in the Schema? CREATE (n:Person:Admin) SET n = {name: 'John Smith'} RETURN n QUERY MATCH (n:Person:Admin) W...