Created
August 10, 2020 19:26
-
-
Save therockstorm/ef21bedf00a0731a9417a47f048e6a4b to your computer and use it in GitHub Desktop.
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 { | |
search(query: "user:therockstorm language:Scala", type: REPOSITORY, first: 10) { | |
repositoryCount | |
edges { | |
node { | |
... on Repository { | |
nameWithOwner | |
protov: object(expression: "master:README.md") { | |
... on Blob { | |
text | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment