We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65c58fa commit 194d4b3Copy full SHA for 194d4b3
frontend/src/gql/mutations.ts
@@ -369,7 +369,11 @@ export const UPDATE_ASSIGNED_TASK = gql`
369
`;
370
371
export const CREATE_REPORT_RECIPIENT = gql`
372
- mutation createReportRecipient($email: String!, $weekly: Boolean!, $monthly: Boolean!) {
+ mutation createReportRecipient(
373
+ $email: String!
374
+ $weekly: Boolean!
375
+ $monthly: Boolean!
376
+ ) {
377
createReportRecipient(email: $email, weekly: $weekly, monthly: $monthly)
378
}
379
0 commit comments