feature(web): add location saving to task groups on position change

This commit is contained in:
Jordan Knott
2020-04-10 21:53:03 -05:00
parent bd878c9c64
commit 063be79b89
3 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1,6 @@
mutation updateTaskGroupLocation($taskGroupID: UUID!, $position: Float!) {
updateTaskGroupLocation(input:{taskGroupID:$taskGroupID, position: $position}) {
taskGroupID
position
}
}