bulkUpdateTasksInput
Autogenerated input type of bulkUpdateTasks
Fields
clientMutationId
· String
· DO NOT USE deprecated
DO NOT USEupdate_all_tasks
· Boolean
· If true, all tasks assigned to the current user will be updated. Used By
Definition
"""Autogenerated input type of bulkUpdateTasks"""input bulkUpdateTasksInput { """ DO NOT USE """ clientMutationId: String @deprecated(reason: "DO NOT USE")
""" If true, tasks will be marked as completed; if false, they will be marked as incomplete. """ complete: Boolean = null
""" If true, tasks will be marked as seen; if false, they will be marked as unseen. """ seen: Boolean = null
""" IDs of tasks to update. Ignored if `update_all_tasks` is true. """ task_ids: [ID]
""" If true, all tasks assigned to the current user will be updated. """ update_all_tasks: Boolean = false}