To view this content, buy the book! 😃🙏
Or sign in if you’ve already purchased.
GraphQL is a specification for communicating with the server. We communicate with it—asking for data and telling it to do things—by sending operations. There are three types of operations:
query
mutation
subscription
Operations can have names, like AllTheStars in this query operation:
AllTheStars
query AllTheStars { githubStars }