Created
September 8, 2018 15:50
-
-
Save evandandrea/a60ce64f43f1dc41f0831378b6dbab87 to your computer and use it in GitHub Desktop.
GraphQL is awesome
This file contains hidden or 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 { | |
r1: repository(owner:"octocat", name:"Hello-World") { | |
...RepoInfo | |
} | |
r2: repository(owner:"desktop", name:"desktop") { | |
...RepoInfo | |
} | |
r3: repository(owner:"snapcore", name:"snapcraft") { | |
...RepoInfo | |
} | |
r4: repository(owner:"ovilab", name:"atomify") { | |
...RepoInfo | |
} | |
} | |
fragment RepoInfo on Repository { | |
name | |
forks{ | |
totalCount | |
} | |
stargazers { | |
totalCount | |
} | |
yaml_a: object(expression: "HEAD:snap/snapcraft.yaml") { | |
id | |
} | |
yaml_b: object(expression: "HEAD:snapcraft.yaml") { | |
id | |
} | |
yaml_c: object(expression: "HEAD:.snapcraft.yaml") { | |
id | |
} | |
defaultBranchRef { | |
name | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment