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