Created
July 21, 2019 10:58
-
-
Save leny/ab8ca39c5e54cb662c165dd04b7539ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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