Last active
April 20, 2018 13:12
-
-
Save YakDriver/4b1dd51a003a9bddd0ba9558d6a26ad9 to your computer and use it in GitHub Desktop.
GraphQL GitHub API Examples (Query Releases)
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 { | |
repository( | |
owner: "YakDriver", | |
name: "pyppyn" | |
) { | |
release(tagName: "0.2.3") { | |
name | |
id | |
releaseAssets(first:10) { | |
nodes { | |
downloadUrl | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment