feature/IO-3096-GlobalNotifications - Code Review Part 3

This commit is contained in:
Dave Richer
2025-03-03 23:20:01 -05:00
parent 555bedbb6c
commit c75e27e018
2 changed files with 45 additions and 8 deletions

View File

@@ -2595,6 +2595,10 @@ export const REMOVE_JOB_WATCHER = gql`
mutation REMOVE_JOB_WATCHER($jobid: uuid!, $userEmail: String!) {
delete_job_watchers(where: { jobid: { _eq: $jobid }, user_email: { _eq: $userEmail } }) {
affected_rows
returning {
id
user_email
}
}
}
`;