mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-01-13 09:10:06 +08:00
10 lines
212 B
GraphQL
10 lines
212 B
GraphQL
query RepoFile($owner: String!, $name: String!, $branchAndPath: String!) {
|
|
repository(owner: $owner, name: $name) {
|
|
object(expression: $branchAndPath) {
|
|
... on Blob {
|
|
text
|
|
}
|
|
}
|
|
}
|
|
}
|