Skip to content

Instantly share code, notes, and snippets.

@leny
Created July 21, 2019 10:58
Show Gist options
  • Save leny/ab8ca39c5e54cb662c165dd04b7539ff to your computer and use it in GitHub Desktop.
Save leny/ab8ca39c5e54cb662c165dd04b7539ff to your computer and use it in GitHub Desktop.
query fetch($cursor:String) {
organization(login: "becodeorg") {
membersWithRole(first: 25, after: $cursor) {
totalCount
pageInfo {
hasNextPage
endCursor
}
nodes {
login
contributionsCollection {
hasAnyContributions
contributionCalendar {
weeks {
contributionDays {
weekday
contributionCount
date
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment