Skip to content

Instantly share code, notes, and snippets.

@martimatix
Last active December 27, 2017 04:22
Show Gist options
  • Save martimatix/e39a2f605e33c0373de636522a483123 to your computer and use it in GitHub Desktop.
Save martimatix/e39a2f605e33c0373de636522a483123 to your computer and use it in GitHub Desktop.
Github Graphql Query
query {
user (login: "martimatix") {
name
repositories (first: 5, orderBy: { field: UPDATED_AT, direction: DESC }) {
pageInfo {
hasNextPage
endCursor
}
edges {
node {
name
id
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment