Skip to content

Instantly share code, notes, and snippets.

@siedentop
Created November 4, 2020 01:03
Show Gist options
  • Save siedentop/21325d8e7810c9bd1fbe9600d676b5e7 to your computer and use it in GitHub Desktop.
Save siedentop/21325d8e7810c9bd1fbe9600d676b5e7 to your computer and use it in GitHub Desktop.
GraphQL-Client (Rust) failing input
query($endCursor: String, $login: String!) {
user(login: $login) {
repositories(
first: 100
after: $endCursor
orderBy: { field: STARGAZERS, direction: DESC }
) {
nodes {
nameWithOwner
isFork
stargazerCount
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
This file has been truncated, but you can view the full file.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment