feat(ui+backend): task categories edition
This commit is contained in:
@ -30,6 +30,11 @@ input TimeUnitChanges {
|
||||
acronym: String
|
||||
}
|
||||
|
||||
input ProjectTaskCategoryChanges {
|
||||
label: String
|
||||
costPerTimeUnit: Float
|
||||
}
|
||||
|
||||
type Mutation {
|
||||
updateUser(id: ID!, changes: UserChanges!): User!
|
||||
createProject(changes: CreateProjectChanges!): Project!
|
||||
@ -37,5 +42,8 @@ type Mutation {
|
||||
addProjectTask(projectId: ID!, changes: ProjectTaskChanges!): Task!
|
||||
removeProjectTask(projectId: ID!, taskId: ID!): Boolean!
|
||||
updateProjectTask(projectId: ID!, taskId: ID!, changes: ProjectTaskChanges!): Task!
|
||||
addProjectTaskCategory(projectId: ID!, changes: ProjectTaskCategoryChanges!): TaskCategory!
|
||||
updateProjectTaskCategory(projectId: ID!, taskCategoryId: ID!, changes: ProjectTaskCategoryChanges!): TaskCategory!
|
||||
removeProjectTaskCategory(projectId: ID!, taskCategoryId: ID!): Boolean!
|
||||
updateProjectParams(projectId: ID!, changes: ProjectParamsChanges!): ProjectParams!
|
||||
}
|
Reference in New Issue
Block a user