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