OBJECT

SentFax

A Sent Fax

link GraphQL Schema definition

  • 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
  • }