Skip to content

ReminderInput

Payload for a reminder

Fields

id · ID · The ID of the reminder. If no id is given, a reminder will be created
interval_type · String · The type of the reminder interval. Options are daily, weekly, once
interval_value · String · For daily interval -> don't send anything. For weekly interval, send in comma separated all lower-case day of week (e.g wednesday, friday). For once, send in the date (e.g 2020-11-28)
is_enabled · Boolean · If not set to true, the reminder will not be sent
remove_reminder · Boolean · Send in true to delete the reminder

Used By

Definition

"""
Payload for a reminder
"""
input ReminderInput {
"""
The ID of the reminder. If no id is given, a reminder will be created
"""
id: ID
"""
The type of the reminder interval. Options are daily, weekly, once
"""
interval_type: String
"""
For daily interval -> don't send anything. For weekly interval, send in comma separated all lower-case day of week (e.g wednesday, friday). For once, send in the date (e.g 2020-11-28)
"""
interval_value: String
"""
If not set to true, the reminder will not be sent
"""
is_enabled: Boolean
"""
Send in true to delete the reminder
"""
remove_reminder: Boolean
}