Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save therustmonk/70d1813f8bec122729a8211c5ed996f2 to your computer and use it in GitHub Desktop.
Save therustmonk/70d1813f8bec122729a8211c5ed996f2 to your computer and use it in GitHub Desktop.
Retrieve a list of sponsors from the Github Graph API
query ($owner: String!, $after: String) {
user (login: $owner) {
sponsorshipsAsMaintainer(first: 100, after: $after, includePrivate: true) {
totalCount
nodes {
sponsorEntity {
... on User {
login
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment