INPUT_OBJECT

DomainsFilter

Complex object with filter conditions for filtering Domain-s.

link GraphQL Schema definition

  • input DomainsFilter {
  • # Filters `Domain`-s by their `address`.
  • address: NullableAddressFilter
  • # Filters `Domain`-s by their `ancestors`.
  • ancestors: StringArrayFilter
  • # Additional filters of the same type are joined using the `AND` operator. It's
  • # joined using AND with other filter properties.
  • and: [DomainsFilter!]
  • # Filters items by their `expiresAtUtc`.
  • expiresAtUtc: NullableDateTimeFilter
  • # Filters `Domain`-s by their `label`.
  • label: DomainLabelFilter
  • # Filters `Domain`-s by their `level`.
  • level: IntFilter
  • # Filters `Domain`-s by their `name`.
  • name: StringFilter
  • # Filters `Domain`-s by their `operators`.
  • operators: StringArrayFilter
  • # Additional filters of the same type are joined using the `OR` operator. It's
  • # joined using AND with other filter properties.
  • or: [DomainsFilter!]
  • # Filters `Domain`-s by their `owner`.
  • owner: AddressFilter
  • # Filters `Domain`-s by their `parentOwner`.
  • parentOwner: AddressFilter
  • # Filters validity of the entity based on its validity `DateTime`. Default is
  • # `VALID`.
  • validity: RecordValidity
  • }