1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-11 00:50:42 +01:00

24 lines
447 B
GraphQL
Raw Normal View History

2020-01-07 15:07:57 +08:00
query GhObject($owner: String!, $name: String!, $expression: String!) {
2019-12-07 16:39:56 +08:00
repository(owner: $owner, name: $name) {
object(expression: $expression) {
__typename
2020-01-30 15:31:46 +08:00
... on Blob {
text
byteSize # x
}
2019-12-07 16:39:56 +08:00
... on Tree {
entries {
type
name
2020-01-30 15:31:46 +08:00
object {
__typename
... on Blob {
byteSize
}
}
2019-12-07 16:39:56 +08:00
}
}
}
}
}