arch: move web folder into api & move api to top level
This commit is contained in:
@ -0,0 +1,10 @@
|
||||
import gql from 'graphql-tag';
|
||||
|
||||
const UPDATE_TASK_CHECKLIST_ITEM_NAME = gql`
|
||||
mutation updateTaskChecklistItemName($taskChecklistItemID: UUID!, $name: String!) {
|
||||
updateTaskChecklistItemName(input: { taskChecklistItemID: $taskChecklistItemID, name: $name }) {
|
||||
id
|
||||
name
|
||||
}
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user