INPUT_OBJECT

UpdateTaskMutationInput

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

link GraphQL Schema definition

  • input UpdateTaskMutationInput {
  • # The task to be performed.
  • task: Text
  • # The ID of a User.
  • user_id: Int64Bit
  • # The date on which the task is due.
  • due: Date
  • # The order this item is shown in a list.
  • list_order: Int
  • # Setting this value to `true` will set `user_id` to null.
  • unset_user_id: Boolean
  • # Setting this value to `true` will set `due` to null.
  • unset_due: Boolean
  • }

link Require by