Skip to content

Instantly share code, notes, and snippets.

@claudiodekker
Last active May 14, 2023 22:15
Show Gist options
  • Save claudiodekker/689a4b231263a1892ea5548ce7ed40b3 to your computer and use it in GitHub Desktop.
Save claudiodekker/689a4b231263a1892ea5548ce7ed40b3 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