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.

Eclipsetalk
Node
since ‎01-13-2020
‎06-01-2022

User Statistics

  • 8 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hello, In the schema.graphql file, I'd like to define a type Query that returns a String with a list of Objects. Let's say I have a query defined as below, how should I set the return type [String, listofConnections ] ? type Query { myQuery(id: Int)...
Hello, I'm running a very simple graphql query via the graphql cli tool. I get the error: "Cannot read property 'isInt' of undefined". Any idea why? query test($name: String) { Person(name: $name) { first, last } } Thanks
Hello, I'm trying out GraphQL. I can use the generated resolvers using Neo4j 3.15 without any issues. I'm now trying to create a custom resolver field based on this article https://grandstack.io/docs/guide-graphql-schema-design.html I defined the res...