taskcafe/web/src/shared/graphql/updateTaskLocation.graphqls

9 lines
238 B
GraphQL
Raw Normal View History

mutation updateTaskLocation($taskID: String!, $taskGroupID: String!, $position: Float!) {
updateTaskLocation(input: { taskID: $taskID, taskGroupID: $taskGroupID, position: $position }) {
2020-05-27 02:53:31 +02:00
id
createdAt
name
position
}
}