mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-04-30 19:37:35 -05:00
feat: object tree item size
This commit is contained in:
@@ -2,15 +2,22 @@ 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
... on Blob {
|
||||
text
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user