node-graphql-server icon indicating copy to clipboard operation
node-graphql-server copied to clipboard

Boilerplate code for scalable, production-ready GraphQL servers

Results 44 node-graphql-server issues
Sort by recently updated
recently updated
newest added

I tried to play with the 'basic' project and found that I can't use createDraft mutation: ![playground app](https://user-images.githubusercontent.com/36716039/39036960-786e682e-44c2-11e8-890d-915da42200e7.PNG) but I can use createPost without 'isPublished' value because this key has...

I recently came across two use cases that would both be solved by a central document to give space for explanations and background information for decisions. 1) In-line comments For...

discussion

`Loading (from {process.env.REACT_APP_GRAPHQL_ENDPOINT})` should either be removed or the proper server endpoint should be inserted. @nikolasburk Since this is the issue with over all node advanced I will fix it...

![image](https://user-images.githubusercontent.com/16508920/35352421-bfa47938-013b-11e8-9d02-60768a8fa70f.png)

It should be possible to * clone the repo * run the install script manually * end up with the same result as if you'd run `graphql create` This should...

enhancement

example: ```js import { Context } from '../utils' export const Subscription = { city: { subscribe: async (parent, args, ctx: Context, info) => { return ctx.db.subscription.city({}, info) }, }, }...