GitHub GraphQL who am i
Keyboard shortcuts
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
GitHub GraphQL who am i
- Get the username of who provided the token
query {
viewer {
login
}
}
python examples/github-graphql/run_query_requests.py examples/github-graphql/login.gql out.json
{
"viewer": {
"login": "szabgab"
}
}