Skip to content

createTaskInput

Autogenerated input type of createTask

Fields

deprecated DO NOT USE
assignee_ids · [ID!] · IDs of the users assigned to this task
client_id · String · The identifier of the client (patient) associated with this task
created_by_id · String · The ID of the user (provider or staff member) who is listed as creating the task
user_id · String · The ID of the first user (provider or staff member) assigned to this task
deprecated use assignee_ids instead

Used By

Definition

"""
Autogenerated input type of createTask
"""
input createTaskInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
IDs of the users assigned to this task
"""
assignee_ids: [ID!]
"""
The identifier of the client (patient) associated with this task
"""
client_id: String
complete: Boolean
completed_by_id: ID
content: String
"""
The ID of the user (provider or staff member) who is listed as creating the task
"""
created_by_id: String
due_date: String
note_id: ID
priority: Int
reminder: TaskReminderInput
seen: Boolean
"""
The ID of the first user (provider or staff member) assigned to this task
"""
user_id: String @deprecated(reason: "use assignee_ids instead")
}