1
0
mirror of https://github.com/git-touch/git-touch synced 2024-12-19 03:33:42 +01:00
git-touch-android-ios-app/lib/graphql/gh_object.graphql
2020-01-07 15:07:57 +08:00

17 lines
309 B
GraphQL

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