mirror of
https://github.com/k0shk0sh/FastHub.git
synced 2026-01-18 14:36:40 +00:00
14 lines
369 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |