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"
}
}