cleanup: merge types & add graphql-codegen-cli

This commit is contained in:
Jordan Knott
2020-04-09 22:27:57 -05:00
parent 9611105364
commit 0766565dc7
21 changed files with 2336 additions and 326 deletions

View File

@ -0,0 +1,7 @@
mutation updateTaskName($taskID: String!, $name: String!) {
updateTaskName(input: { taskID: $taskID, name: $name }) {
taskID
name
position
}
}