Skip to content

Instantly share code, notes, and snippets.

View mcleo-d's full-sized avatar

James McLeod mcleo-d

  • London, UK
  • 11:51 (UTC +01:00)
View GitHub Profile
@mcleo-d
mcleo-d / stargazers-in-repo.graphql
Created June 28, 2022 15:25
List of GitHub stargazers for named repo in organisation
query($github_org:String!, $repo:String!) {
organization(login: $github_org) {
repository(name: $repo) {
name
stargazers(orderBy: {field: STARRED_AT, direction: DESC}, first: 100) {
pageInfo {
hasNextPage
endCursor
}
edges {
@mcleo-d
mcleo-d / top-100-repo-stargazers.graphql
Last active June 28, 2022 15:22
Top 100 repos in a named GitHub organisation, including first page of STARGAZERS, in descending order
query($github_org:String!) {
organization(login: $github_org) {
repositories(orderBy: {field: STARGAZERS, direction: DESC}, first: 100) {
pageInfo {
startCursor
hasNextPage
endCursor
}
nodes {
name