Interacting with GitHub's GraphQL API
In this lesson, we are now finally ready to interact with GitHub's GraphQL API.
We'll cover the following...
There are two common ways to interact with the GitHub GraphQL API without writing any source code for it.
First, you can use GitHub’s GraphQL Explorer. You only need to sign up with your GitHub account to perform a query or mutation to their GraphQL API, and it’s a good way to simplify your first experience.
Second, you can use a generic client in the form of an application. GraphiQL is a client that makes GraphQL requests as integration or as a standalone ...