9 lines
238 B
GraphQL
9 lines
238 B
GraphQL
mutation updateTaskLocation($taskID: String!, $taskGroupID: String!, $position: Float!) {
|
|
updateTaskLocation(input: { taskID: $taskID, taskGroupID: $taskGroupID, position: $position }) {
|
|
id
|
|
createdAt
|
|
name
|
|
position
|
|
}
|
|
}
|