Reference
GraphQL API
Queries
Queries are used to retrieve data from the GraphQL API.
Mutations
Mutations are used to modify data in the GraphQL API.
Objects
Objects are the basic building blocks of GraphQL.
Enums
Enums are a special kind of scalar that is restricted to a particular set of values.
Interfaces
Interfaces are abstract types that define a set of fields that other types must include.
Unions
Unions allow you to return different types from a single field.
Input Objects
Input objects are used to pass complex objects as arguments to queries and mutations.
Scalars
Scalars are the primitive data types in GraphQL.