9 lines
158 B
GraphQL
9 lines
158 B
GraphQL
mutation issuableTodoCreate($input: TodoCreateInput!) {
|
|
todoMutation: todoCreate(input: $input) {
|
|
__typename
|
|
todo {
|
|
id
|
|
}
|
|
errors
|
|
}
|
|
}
|