INPUT_OBJECT

CurrencyRateCondition

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

link GraphQL Schema definition

  • input CurrencyRateCondition {
  • # Checks for equality with the object’s `date` field.
  • date: Date
  • # Checks for equality with the object’s `currency` field.
  • currency: CurrencyCode
  • # Checks for equality with the object’s `rate` field.
  • rate: Float
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: CreatedTime
  • }