INPUT_OBJECT

BankTransactionCondition

A condition to be used against BankTransaction object types. All fields are tested for equality and combined with a logical ‘and.’

link GraphQL Schema definition

  • input BankTransactionCondition {
  • # Checks for equality with the object’s `id` field.
  • id: String
  • # Checks for equality with the object’s `bankAccountIban` field.
  • bankAccountIban: BankIban
  • # Checks for equality with the object’s `partnerName` field.
  • partnerName: String
  • # Checks for equality with the object’s `partnerIban` field.
  • partnerIban: BankIban
  • # Checks for equality with the object’s `partnerBic` field.
  • partnerBic: BankBic
  • # Checks for equality with the object’s `title` field.
  • title: String
  • # Checks for equality with the object’s `purpose` field.
  • purpose: String
  • # Checks for equality with the object’s `type` field.
  • type: BankTransactionType
  • # Checks for equality with the object’s `currency` field.
  • currency: CurrencyCode
  • # Checks for equality with the object’s `amount` field.
  • amount: Float
  • # Checks for equality with the object’s `bookingDate` field.
  • bookingDate: Datetime
  • # Checks for equality with the object’s `updatedAt` field.
  • updatedAt: UpdatedTime
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: CreatedTime
  • }