FastHub/data/src/main/graphql/github/file_content.graphql
2019-07-30 20:32:47 +02:00

14 lines
369 B
GraphQL

query getFileContent($login: String!, $repo: String!, $path: String!) {
repositoryOwner(login: $login) {
repository(name: $repo) {
object(expression: $path) {
... on Blob {
isBinary
byteSize
isTruncated
text
}
}
}
}
}