| Argument | Type | Description |
|---|---|---|
input | ReminderInput | Input data for reminder operation |
mutation($input: ReminderInput) { createReminder(input: $input) { id # Add other fields you need }}{ "input": {}}| Argument | Type | Description |
|---|---|---|
input | ReminderSilenceInput | Input data for reminder silence operation |
mutation($input: ReminderSilenceInput) { createReminderSilence(input: $input) { id # Add other fields you need }}{ "input": {}}mutation($id: ID!) { deleteReminder(id: $id) { id # Add other fields you need }}{ "id": "1"}mutation( $emails: [String!], $locationId: ID!, $template: String!) { sendTestEmail( emails: $emails, locationId: $locationId, template: $template ) { id # Add other fields you need }}{ "emails": {}, "locationId": "1", "template": "example"}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | Unique identifier |
inputrequired | ReminderInput! | Input |
mutation( $id: ID!, $input: ReminderInput!) { updateReminder( id: $id, input: $input ) { id # Add other fields you need }}{ "id": "1", "input": {}}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | Unique identifier |
inputrequired | ReminderSilenceInput! | Input |
mutation( $id: ID!, $input: ReminderSilenceInput!) { updateReminderSilence( id: $id, input: $input ) { id # Add other fields you need }}{ "id": "1", "input": {}}