INPUT_OBJECT

MoneyAccountCondition

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

link GraphQL Schema definition

  • input MoneyAccountCondition {
  • # Checks for equality with the object’s `rowId` field.
  • rowId: UUID
  • # Checks for equality with the object’s `clientCompanyRowId` field.
  • clientCompanyRowId: UUID
  • # Checks for equality with the object’s `type` field.
  • type: MoneyAccountType
  • # Checks for equality with the object’s `name` field.
  • name: String
  • # Checks for equality with the object’s `externalRowId` field.
  • externalRowId: 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 `active` field.
  • active: Boolean
  • # Checks for equality with the object’s `updatedAt` field.
  • updatedAt: UpdatedTime
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: CreatedTime
  • }