arch: move web folder into api & move api to top level
This commit is contained in:
12
frontend/src/shared/graphql/taskGroup/updateTaskGroupName.ts
Normal file
12
frontend/src/shared/graphql/taskGroup/updateTaskGroupName.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import gql from 'graphql-tag';
|
||||
import TASK_FRAGMENT from '../fragments/task';
|
||||
|
||||
const UPDATE_TASK_GROUP_NAME_MUTATION = gql`
|
||||
mutation updateTaskGroupName($taskGroupID: UUID!, $name: String!) {
|
||||
updateTaskGroupName(input:{taskGroupID:$taskGroupID, name:$name}) {
|
||||
id
|
||||
name
|
||||
}
|
||||
${TASK_FRAGMENT}
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user