INPUT_OBJECT
TaskReminderInput
Payload for a task reminder
link GraphQL Schema definition
- input TaskReminderInput {
- # Id of the reminder. If no id is given, a reminder will be created
- ID :
- # The type of interval. Options are daily, weekly, once
- String :
- # For a daily interval send nothing. For a weekly interval, send a comma separated
- # day of week in the lower case (e.g wednesday, friday). To remind once, send the
- # date (e.g 2020-11-28)
- String :
- # If not set to true, the reminder will not be sent
- Boolean :
- # Time for reminder
- Int :
- # Send in true to delete the reminder
- Boolean :
- }