Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@YakDriver
Last active April 20, 2018 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YakDriver/4b1dd51a003a9bddd0ba9558d6a26ad9 to your computer and use it in GitHub Desktop.
Save YakDriver/4b1dd51a003a9bddd0ba9558d6a26ad9 to your computer and use it in GitHub Desktop.
GraphQL GitHub API Examples (Query Releases)
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