Skip to content

SentFax

A Sent Fax

Fields

created_at · String! · required · The creation date of the fax
cursor · Cursor! · required · Pagination cursor
destination_number · String · Where the fax was sent
id · ID! · required · The unique identifier of the fax
parsed_form_answer_group_ids · [ID!] · The ids of the chart notes sent with the fax
patient · User · The patient that the fax is in regards to
resendable · Boolean · False if no document ids or form answer group ids (fax existed before the addition of document ids column)
sender · User · The sender of the fax
status · String · The status of the fax
status_display_string · String · The display string of the fax status
updated_at · String · The updated date of the sent fax

Used By

Definition

"""
A Sent Fax
"""
type SentFax {
"""
The creation date of the fax
"""
created_at: String!
"""
Pagination cursor
"""
cursor: Cursor!
"""
Where the fax was sent
"""
destination_number: String
"""
The unique identifier of the fax
"""
id: ID!
"""
The ids of the chart notes sent with the fax
"""
parsed_form_answer_group_ids: [ID!]
"""
The patient that the fax is in regards to
"""
patient: User
"""
False if no document ids or form answer group ids (fax existed before the addition of document ids column)
"""
resendable: Boolean
"""
The sender of the fax
"""
sender: User
"""
The status of the fax
"""
status: String
"""
The display string of the fax status
"""
status_display_string: String
"""
The updated date of the sent fax
"""
updated_at: String
}