Graphql Shorthand Notation Cheat Sheet
Graphql Shorthand Notation Cheat Sheet
GraphQL Schema Language Cheat Sheet Basic Input Object implementing one or more Interfaces
The denitive guide to express your GraphQL schema succinctly
Last updated: 28 January 2017 type Query { interface Foo {
Prepared by: Haz Ismail / @sogko users(limit: Int): [User] is_foo: Boolean
} }
interface Goo {
What is GraphQL Schema Language? Schema Input with default value is_goo: Boolean
It is a shorthand notation to succinctly express the }
basic shape of your GraphQL schema and its type schema GraphQL schema definition
type Query { type Bar implements Foo {
system. query A read-only fetch operation users(limit: Int = 10): [User] is_foo: Boolean