feature(api): add mutation to update task group location

This commit is contained in:
Jordan Knott
2020-04-10 21:47:43 -05:00
parent bd73717deb
commit bd878c9c64
8 changed files with 169 additions and 11 deletions

View File

@ -136,6 +136,11 @@ input UpdateTaskName {
name: String!
}
input NewTaskGroupLocation {
taskGroupID: UUID!
position: Float!
}
type Mutation {
createRefreshToken(input: NewRefreshToken!): RefreshToken!
createUserAccount(input: NewUserAccount!): UserAccount!
@ -143,6 +148,7 @@ type Mutation {
createTeam(input: NewTeam!): Team!
createProject(input: NewProject!): Project!
createTaskGroup(input: NewTaskGroup!): TaskGroup!
updateTaskGroupLocation(input: NewTaskGroupLocation!): TaskGroup!
createTask(input: NewTask!): Task!
updateTaskLocation(input: NewTaskLocation!): Task!
logoutUser(input: LogoutUser!): Boolean!