INPUT_OBJECT

ReverseRecordsFilter

Complex object with filter conditions for filtering ReverseRecord-s.

link GraphQL Schema definition

  • input ReverseRecordsFilter {
  • # Filters `ReverseRecord`-s by their `address`.
  • address: AddressFilter
  • # Additional filters of the same type are joined using the `AND` operator. It's
  • # joined using AND with other filter properties.
  • and: [ReverseRecordsFilter!]
  • # Filters items by their `expiresAtUtc`.
  • expiresAtUtc: NullableDateTimeFilter
  • # Filters `ReverseRecord`-s by their `name`.
  • name: NullableStringFilter
  • # Additional filters of the same type are joined using the `OR` operator. It's
  • # joined using AND with other filter properties.
  • or: [ReverseRecordsFilter!]
  • # Filters `ReverseRecord`-s by their `owner`.
  • owner: AddressFilter
  • # Filters validity of the entity based on its validity `DateTime`. Default is
  • # `VALID`.
  • validity: RecordValidity
  • }