Created
February 25, 2021 22:04
-
-
Save dwwoelfel/1259799089fbf05a15cd6336b4bb8377 to your computer and use it in GitHub Desktop.
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 GistInfo($login: String!, $gistId: String!) { | |
gitHub { | |
user(login: $login) { | |
gist(name: $gistId) { | |
files { | |
language { | |
name | |
} | |
text | |
extension | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment