Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tatsushitoji/f6af259ac8c85de1334c64436c0b2bac to your computer and use it in GitHub Desktop.
Save tatsushitoji/f6af259ac8c85de1334c64436c0b2bac to your computer and use it in GitHub Desktop.
GitHub GraphQL API Ordered Starred Repositories Examples
query {
viewer {
login
name
starredRepositories(first: 5, orderBy: {field: STARRED_AT, direction: DESC }, after: "before_cursor" ) {
edges {
cursor
node {
id
name
primaryLanguage {
id
name
color
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment