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.

q6qgs
Node Link
since ‎03-05-2020
‎06-01-2022

User Statistics

  • 11 Posts
  • 0 Solutions
  • 6 Kudos given
  • 0 Kudos received

User Activity

grandstack.io GraphQL Authorization And Middleware | GRANDstack This guide discusses some of the ways to address authentication and authorization when using `neo4j-graphql-js` and will evolve as new auth-specific feature...
my schema: const schema = makeAugmentedSchema({ typeDefs, resolvers: resolveFunctions, config: { auth: { isAuthenticated: true, hasRole: true }, mutation: { exclude: ["AddUserTic...
MATCH (p:Project{id:"p1test"})<-[r1:TICKET]-(:Ticket) MATCH (u:User{id:"user1test"}) WITH u, COUNT(r1) + 1 AS issNo, p CREATE (p)<-[rel:TICKET]-(t: Ticket {id:apoc.create.uuid(), title:"T1", hourEstimate:9, desc:"hELLO", done:false, issueNumber: issN...
how to see generated cypher for graphql schema? Using the neo4j-graphql-js library, it is apparently possible to log out the generated cypher statements with an environment variable: DEBUG=neo4j-graphql-js node yourcode.js GitHub ...
is it possible to return an object of objects (each key containing an object)? what I want to achieve: { a1 : { name: "bob", age: 45 }, a2 : { name: "toby", age: 27 } } or [ a1 : { name: "bob", age: 45 }, a2 : { name: "toby", ag...