Skip to content

Instantly share code, notes, and snippets.

@thetwosents
Last active May 28, 2017 14:42
Show Gist options
  • Save thetwosents/e4b0dc50884c7dbb7d7a94ac8ba3c1a5 to your computer and use it in GitHub Desktop.
Save thetwosents/e4b0dc50884c7dbb7d7a94ac8ba3c1a5 to your computer and use it in GitHub Desktop.
GitHub GraphQL to query starredRepositories
# Get all starred repos for current user
query {
viewer {
login
starredRepositories(last:100) {
edges {
node {
id
name
owner {
id
avatarUrl
login
}
url
updatedAt
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment