INPUT_OBJECT

DomainLabelFilter

Filters Domain-s by their label.

link GraphQL Schema definition

  • input DomainLabelFilter {
  • # Specifies the domain label composition (letters, numbers, dash) to match.
  • composition: LabelCompositionFilter
  • # Specifies the suffix of the value to match.
  • endsWith: String
  • # Specifies the exact value to match.
  • equalTo: String
  • # Specifies a list of exact values to match.
  • in: [String!]
  • # Specifies the value length to match.
  • length: StringLengthFilter
  • # Specifies the similar string to the value to match.
  • like: String
  • # Specifies the exact value NOT to match.
  • notEqualTo: String
  • # Specifies a list of exact values NOT to match.
  • notIn: [String!]
  • # Specifies the prefix of the value to match.
  • startsWith: String
  • }