Created
November 4, 2020 01:03
-
-
Save siedentop/21325d8e7810c9bd1fbe9600d676b5e7 to your computer and use it in GitHub Desktop.
GraphQL-Client (Rust) failing input
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment