July 2019
Beginner to intermediate
300 pages
7h 48m
English
Operations are types that enable a GraphQL service to expose any given functionality that is to be offered by a GraphQL service.
There are three operation types supported in GraphQL:
Query
This type is used to define operations that fetch data and thus are read only.
Mutation
This type is used to define operations that create and/or manipulate data, such as create, update, and delete. A mutation may also respond with a data fetch.
Subscription
GraphQL's implementation of web events (for example, Webhooks) allows clients that subscribe to a given event to then asynchronously receive updates.
Read now
Unlock full access