INPUT_OBJECT
CreateTaskMutationInput
The input object that defines the fields for the createTask mutation.
link GraphQL Schema definition
- input CreateTaskMutationInput {
- # The task to be performed.
- : Text!
- # The ID of a User.
- : Int64Bit
- # The date on which the task is due.
- : Date
- # The entity that the task is associated with.
- : TaskableType!
- # The ID of the entity that the task is associated with.
- : Int64Bit!
- # The ID of a `TaskGroup`.
- : Int64Bit
- # How this task gets marked as completed.
- : TaskCompletionType
- # The type of entity that completes this task. Only required when completion_type
- # is not `BOOLEAN`.
- : CompletableType
- # The ID of the entity that completes or completed this task. Only required if
- # completable_type is `CustomField`.
- : Int64Bit
- # The order this item is shown in a list.
- : Int
- }