November 2018
Beginner
502 pages
10h 22m
English
In this section, we'll use the GitHub GraphQL API explorer to get information about our GitHub user account:
https://developer.github.com/v4/explorer/.
We will need to be signed in to our GitHub account if we aren't already.
query { viewer { name }}
This is our first GraphQL query. Here are some key points:
The query result will appear on the right-hand side:
The data we requested is returned ...
Read now
Unlock full access