INPUT_OBJECT

BankAccountCondition

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

link GraphQL Schema definition

  • input BankAccountCondition {
  • # Checks for equality with the object’s `bankBic` field.
  • bankBic: BankBic
  • # Checks for equality with the object’s `iban` field.
  • iban: BankIban
  • # Checks for equality with the object’s `companyId` field.
  • companyId: UUID
  • # Checks for equality with the object’s `type` field.
  • type: BankAccountType
  • # Checks for equality with the object’s `name` field.
  • name: String
  • # Checks for equality with the object’s `currency` field.
  • currency: CurrencyCode
  • # Checks for equality with the object’s `balance` field.
  • balance: Float
  • # Checks for equality with the object’s `disposable` field.
  • disposable: Float
  • # Checks for equality with the object’s `overdraft` field.
  • overdraft: Float
  • # Checks for equality with the object’s `token` field.
  • token: String
  • # Checks for equality with the object’s `updatedAt` field.
  • updatedAt: UpdatedTime
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: CreatedTime
  • }