1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-10 16:40:37 +01:00
2020-01-30 15:31:46 +08:00

24 lines
447 B
GraphQL

query GhObject($owner: String!, $name: String!, $expression: String!) {
repository(owner: $owner, name: $name) {
object(expression: $expression) {
__typename
... on Blob {
text
byteSize # x
}
... on Tree {
entries {
type
name
object {
__typename
... on Blob {
byteSize
}
}
}
}
}
}
}