Skip to content

Instantly share code, notes, and snippets.

@dacr
Last active February 3, 2026 20:20
Show Gist options
  • Select an option

  • Save dacr/fff4220ef604a6ac9ccc0e06bd9c9901 to your computer and use it in GitHub Desktop.

Select an option

Save dacr/fff4220ef604a6ac9ccc0e06bd9c9901 to your computer and use it in GitHub Desktop.
get current user github information / published by https://github.com/dacr/code-examples-manager #985a99ba-80fb-41fc-8373-aa605cc0b5bc/f5258b79dabe935a4269628fee5c22c32a8813f8
## summary : get current user github information
## keywords : gitlab, userinfo, graphql
## publish : gist
## authors : David Crosson
## license : Apache License Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt)
## id : 985a99ba-80fb-41fc-8373-aa605cc0b5bc
## created-on : 2021-04-19T15:15:59Z
## managed-by : https://github.com/dacr/code-examples-manager
# schema specs => https://docs.github.com/public/schema.docs.graphql
{
viewer {
name
email
createdAt
followers {totalCount}
following {totalCount}
starredRepositories {totalCount}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment