11 lines
217 B
GraphQL
11 lines
217 B
GraphQL
|
query getCommit($fileName: String!, $type: String!, $path: String!) {
|
||
|
commit(path: $path, fileName: $fileName, type: $type) @client {
|
||
|
sha
|
||
|
message
|
||
|
committedDate
|
||
|
commitPath
|
||
|
fileName
|
||
|
type
|
||
|
}
|
||
|
}
|