Skip to content

bulkUpdateTasksInput

Autogenerated input type of bulkUpdateTasks

Fields

deprecated DO NOT USE
complete · Boolean · If true, tasks will be marked as completed; if false, they will be marked as incomplete.
seen · Boolean · If true, tasks will be marked as seen; if false, they will be marked as unseen.
task_ids · [ID] · IDs of tasks to update. Ignored if `update_all_tasks` is true.
update_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
}