Files
GitHawk/gql/RepoFile.graphql
2017-10-15 15:01:01 -04:00

10 lines
212 B
GraphQL

query RepoFile($owner: String!, $name: String!, $branchAndPath: String!) {
repository(owner: $owner, name: $name) {
object(expression: $branchAndPath) {
... on Blob {
text
}
}
}
}