Skip to content

chartNotes

Load all charting notes accessible by this user

Arguments

chart_note_status · ChartNoteStatus · Chart note status to filter by
exclude_requested_and_intake_flow_forms · Boolean · Exclude forms completed via form requests or intake flows
primary_payer_ids · [ID!] · Filter by primary insurance plan IDs
after · String · Returns the elements in the list that come after the specified cursor.
before · String · Returns the elements in the list that come before the specified cursor.
first · Int · Returns the first _n_ elements from the list.
last · Int · Returns the last _n_ elements from the list.

Returns

FormAnswerGroupPaginationConnection

Example

query chartNotes(
$tag_ids: [ID!]
$end_date: ISO8601Date
$start_date: ISO8601Date
$user_id: ID
$provider_ids: [ID]
$chart_note_status: ChartNoteStatus
$custom_module_form_ids: [ID!]
$exclude_requested_and_intake_flow_forms: Boolean
$primary_payer_ids: [ID!]
$after: String
$before: String
$first: Int
$last: Int
) {
chartNotes(
tag_ids: $tag_ids
end_date: $end_date
start_date: $start_date
user_id: $user_id
provider_ids: $provider_ids
chart_note_status: $chart_note_status
custom_module_form_ids: $custom_module_form_ids
exclude_requested_and_intake_flow_forms: $exclude_requested_and_intake_flow_forms
primary_payer_ids: $primary_payer_ids
after: $after
before: $before
first: $first
last: $last
) {
edges
nodes
page_info
total_count
}
}