Skip to content

updateFormAnswerGroupInput

Autogenerated input type of updateFormAnswerGroup

Fields

deprecated DO NOT USE
course_item_id · ID · ID of the course item completed by submitting this form.
date · ISO8601DateTime · Date portion of the service date, used with `time` to set the creation timestamp.
deprecated Not used.
external_id · ID · External identifier for integration with third-party systems.
finished · Boolean · Whether the form has been completed and submitted, as opposed to saved as a draft.
form_answers · [FormAnswerInput] · Individual form answers to submit with this form.
formatted_date · ISO8601DateTime · The datetime of service.
id · ID · The ID of the form answer group to update.
individual_client_notes · [IndividualClientNoteInput] · Individual client notes for group appointment charting.
marked_complete · Boolean · Marks the form as explicitly completed, setting the marked_complete_at timestamp.
marked_locked · Boolean · Deprecated: use the `lockFormAnswerGroup` mutation instead. Locks the form from further editing.
metadata · String · Maximum character limit of 128,000.
name · String · Name or title for this form answer group.
time · String · Time portion of the service date (e.g., '10 30' for 10:30 AM), used with `date` to set the creation timestamp.
appointment_id · ID · ID of the appointment associated with this form answer group.
tab_uuid · UUID · Used to track changes in `form_answers`.

Used By

Definition

"""
Autogenerated input type of updateFormAnswerGroup
"""
input updateFormAnswerGroupInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
ID of the course item completed by submitting this form.
"""
course_item_id: ID
"""
Date portion of the service date, used with `time` to set the creation timestamp.
"""
date: ISO8601DateTime
"""
Deprecated.
"""
dismissed_lock_charting_note_warning: Boolean = false
@deprecated(reason: "Not used.")
"""
External identifier for integration with third-party systems.
"""
external_id: ID
"""
Whether the form has been completed and submitted, as opposed to saved as a draft.
"""
finished: Boolean
"""
Individual form answers to submit with this form.
"""
form_answers: [FormAnswerInput]
"""
The datetime of service.
"""
formatted_date: ISO8601DateTime
"""
The ID of the form answer group to update.
"""
id: ID
"""
Individual client notes for group appointment charting.
"""
individual_client_notes: [IndividualClientNoteInput]
"""
Marks the form as explicitly completed, setting the marked_complete_at timestamp.
"""
marked_complete: Boolean
"""
Deprecated: use the `lockFormAnswerGroup` mutation instead. Locks the form from further editing.
"""
marked_locked: Boolean
"""
Maximum character limit of 128,000.
"""
metadata: String
"""
Name or title for this form answer group.
"""
name: String
"""
Time portion of the service date (e.g., '10 30' for 10:30 AM), used with `date` to set the creation timestamp.
"""
time: String
"""
ID of the appointment associated with this form answer group.
"""
appointment_id: ID
"""
Used to track changes in `form_answers`.
"""
tab_uuid: UUID
}