git-touch-android-ios-app/lib/graphql/gh_object.graphql

24 lines
447 B
GraphQL
Raw Normal View History

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