mirror of
https://github.com/git-touch/git-touch
synced 2024-12-19 11:43:30 +01:00
17 lines
300 B
GraphQL
17 lines
300 B
GraphQL
|
query($owner: String!, $name: String!, $expression: String!) {
|
||
|
repository(owner: $owner, name: $name) {
|
||
|
object(expression: $expression) {
|
||
|
__typename
|
||
|
... on Tree {
|
||
|
entries {
|
||
|
type
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
... on Blob {
|
||
|
text
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|