Skip to content

Instantly share code, notes, and snippets.

@interaminense
Last active November 3, 2018 00:43
Show Gist options
  • Save interaminense/cec4e5cc24e9ecab4dd105589c37177c to your computer and use it in GitHub Desktop.
Save interaminense/cec4e5cc24e9ecab4dd105589c37177c to your computer and use it in GitHub Desktop.
Github API Graphql - Get file content
query {
repository(name: "repo-name", owner: "owner") {
object(expression: "branch:file/to/path.extension") {
... on Blob {
text
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment