fulfillment_invoices

Arguments

ArgumentTypeRequiredDefaultDescription
date_fromISODateTimeNo
date_toISODateTimeNo
analyzeBooleanNo

If true, the query will only be analyzed (cost estimated) without executing it.

Return Type

FulfillmentInvoicesQueryResult

Query

query fulfillment_invoices(
  $date_from: ISODateTime,
  $date_to: ISODateTime,
  $analyze: Boolean
) {
  fulfillment_invoices(
    date_from: $date_from,
    date_to: $date_to,
    analyze: $analyze
  ) {
    request_id
    complexity
    data {
      ...FulfillmentInvoiceConnectionFragment
    }
  }
}

Variables

{
  "date_from": ISODateTime,
  "date_to": ISODateTime,
  "analyze": true
}

Response

{
  "data": {
    "fulfillment_invoices": {
      "request_id": "abc123",
      "complexity": 987,
      "data": FulfillmentInvoiceConnection
    }
  }
}