graphql-aql-generator
graphql-aql-generator copied to clipboard
query GraphQL with only GraphQL IDL. Super simple.
Do we always need to create typeDefs with all the collections which we have by defining there structure in main.js. Is there any way main.js utilize all the collections with...
Hi, Thank you very much for this library, I hope it will grow, because it provide very convenient solution. In order to start the development I made some hooks to...
Let say I have ``` type authors { _key: String! name: String! } type Query { authors(name: String, _key: String): authors } ``` How can I get all authors ?...
main.js 'use strict'; const graphql = require('graphql-sync'); const createGraphqlRouter = require('@arangodb/foxx/graphql'); const generator = require('graphql-aql-generator'); // Construct a schema, using GraphQL schema language const typeDefs = ` type Query {...
When we have a JWT token with current user information. How can we resolve that the current user may read the property or can do that mutation?
When you want to have a mutation "createAuthor(name: String!): Author" how can we implement that?