INPUT_OBJECT

CreateTaskTemplateItemMutationInput

The input object that defines the fields for the createTaskTemplateItem mutation.

link GraphQL Schema definition

  • input CreateTaskTemplateItemMutationInput {
  • # The ID of a `TaskTemplate`.
  • task_template_id: Int64Bit!
  • # The task to be performed.
  • task: String!
  • # How this task gets marked as completed.
  • completion_type: TaskCompletionType
  • # The type of entity that completes this task. Only required when completion_type
  • # is not `BOOLEAN`.
  • completable_type: CompletableType
  • # The ID of the entity that completes or completed this task. Only required if
  • # completable_type is `CustomField`.
  • completable_id: Int64Bit
  • # The order this item is shown in a list.
  • list_order: Int
  • }

link Require by