create-graphql
create-graphql copied to clipboard
Command-line utility to build production-ready servers with GraphQL.
There should be a boilerplate to go with #43.
It would be awesome to use all the features through WebStorm.
I can see that it is possible to create a graphql **type** or **mutation** based on an existing mongoose schema using the `--schema` command, it would be great if creating...
Loopback makes it really simple to create and api and also uses generators: http://loopback.io/doc/en/lb2/Create-a-simple-API.html
If we could read an existing `schema.json` file, for creating the types, queries and mutations allowed by the server, it would be great for frontend development... Another improvement would be...
Example of raw graphql mutation based on https://learngraphql.com/basics/defining-mutations/2 ```jsx const Mutation = new GraphQLObjectType({ name: "BlogMutations", description: "Mutations of our blog", fields: () => ({ createPost: { type: Post, args:...
Allow VSCode users to use Create-GraphQL commands through the IDE.
Allow Atom users to use Create-GraphQL commands through the IDE.