10 lines
141 B
GraphQL
10 lines
141 B
GraphQL
|
mutation CreateCommit($input: CommitCreateInput!) {
|
||
|
commitCreate(input: $input) {
|
||
|
commit {
|
||
|
id
|
||
|
}
|
||
|
content
|
||
|
errors
|
||
|
}
|
||
|
}
|