graphql-schema-language-cheat-sheet
graphql-schema-language-cheat-sheet copied to clipboard
GraphQL Shorthand Notation Cheat Sheet
It looks great!
Thanks for a great cheat. I'm looking for update embedded documents, but i can't find it anywhere. For example GraphQL query: `mutation (_id: "12" input: { work: "911" } )...
Just an initial draft fixes #5
Interfaces are now defined with a `&` and not a `,` eg; ```graphql type FeaturedPost implements Post & Featured { title: String! featured: Boolean! } ```
Looks like it should be mustard yellow like all the other types, unless I missed something.
Directive declaration definition: https://github.com/graphql/graphql-js/pull/318 To do: - [ ] add `directive` to `Type Definitions` - [ ] add a `Directive Types` section with a declaration and usage examples - [...
The examples on the cheatsheet use underscores (eg `is_active`) while the convention seems to be to use camelcase. I know either way works, but am curious why this is deviating...
Have you considered adding a markdown version? I'd be glad to do it if necessary I just think it would add value to this project as far as being at...