Skip to content

insurancePayments

Fetch insurance payments for authenticated provider

Arguments

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

InsurancePaymentConnection

Example

query insurancePayments(
$start_paid_date: ISO8601Date
$end_paid_date: ISO8601Date
$order_by: InsurancePaymentsOrderKeys
$keywords: String
$deposit_status: InsurancePaymentsDepositStatusEnum
$payer: String
$after: String
$before: String
$first: Int
$last: Int
) {
insurancePayments(
start_paid_date: $start_paid_date
end_paid_date: $end_paid_date
order_by: $order_by
keywords: $keywords
deposit_status: $deposit_status
payer: $payer
after: $after
before: $before
first: $first
last: $last
) {
edges
nodes
page_info
total_count
}
}