INPUT_OBJECT

BankCondition

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

link GraphQL Schema definition

  • input BankCondition {
  • # Checks for equality with the object’s `bic` field.
  • bic: BankBic
  • # Checks for equality with the object’s `legalName` field.
  • legalName: String
  • # Checks for equality with the object’s `brandName` field.
  • brandName: String
  • # Checks for equality with the object’s `updatedAt` field.
  • updatedAt: UpdatedTime
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: CreatedTime
  • }