Table of Contents

charges Query

Liefert ein Array der Abrechnungsvorgänge, die dem übergebenen Bedingung entsprechen.

Input

Argument Type Description
filter ChargeFilterInput! No description

Returns

[Charge!]!

query charges($input: ChargeFilterInput!) {
  charges(input: $input) {
    id
    key
    prescriptionKey
    indexDocumentURL
    imageUrl
    transactions {
      id
      invoice {
        id
        key
        date
        paymasterKey
        pocketKey
        state
        imageUrl

        subTotals {
          id
          amount {
            id
            value
            copayment
            amount
            balance
          }
          reason
        }
      }
      amount {
        id
        value
        copayment
        amount
        balance
      }
      text
      closing {
        id
        key
        date
        state
      }
      charge {
        id
      }
      document {
        id
        batch {
          id
          caption
          job {
            id
            key
          }
          institution {
            id
            key
          }
        }
      }
    }
    indexData {
      paymasterKey
      invoiceKey
      chargeKey
      supplement {
        pocketKey
        cardboxColor
        cardboxColorCaption
      }
    }
    cancellationInfo {
      timestamp
      jobState
      username
      remark
    }
  }
}