INPUT_OBJECT
CreateTaskReminderInput
link GraphQL Schema definition
- input CreateTaskReminderInput {
- # Optional client-supplied identifier passed on a mutation input and echoed back
- # unchanged on its payload, so a client can correlate the response with its
- # request (Relay convention).
- : String
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Id of the user who set the reminder.
- : ID!
- # Timestamp when the reminder should fire.
- : DateTime!
- # Current state of the reminder (e.g. NotSent, Sent, Snoozed, Dismissed).
- : ReminderStatusEnum
- # Id of the task.
- : ID!
- # Revision when entity was lastly changed.
- : Int
- }