Skip to content

Commit

Permalink
Remove frontend create_note_task mutation (DEV-804) (#732)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikefeldberg authored Dec 17, 2024
1 parent d45dbf8 commit 3897ba9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 86 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 0 additions & 27 deletions libs/expo/betterangels/src/lib/apollo/graphql/mutations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,33 +161,6 @@ export const DELETE_MOOD = gql`
}
`;

export const CREATE_NOTE_TASK = gql`
mutation CreateNoteTask($data: CreateNoteTaskInput!) {
createNoteTask(data: $data) {
... on OperationInfo {
messages {
kind
field
message
}
}
... on TaskType {
id
title
status
dueBy
client {
id
}
createdBy {
id
}
createdAt
}
}
}
`;

export const UPDATE_TASK = gql`
mutation UpdateTask($data: UpdateTaskInput!) {
updateTask(data: $data) {
Expand Down

0 comments on commit 3897ba9

Please sign in to comment.