Skip to main content

StringRangeFilterInput

Defines starting and ending range for a string used when performing a search operation.

Strings that fall between the from and to values will be returned when performing a search.

Rules:

  • The specified from and to values are inclusive.
  • The search operation is not case sensitive.

To search for a single string value, set the from and to values to the same string.

Examples:

  • { "from": "a", "to": "m" } Searches for strings whose first character starts with letters in the range a-m.
  • { "from": "Williams", "to": "Williams" } Searches for strings that match Williams.
  • { "from": "Brooks" } Searches for strings that match Brooks and all values in subsequent alphabetical order.
input StringRangeFilterInput {
from: String!
to: String
}

Fields

StringRangeFilterInput.from ● String! non-null scalar

The starting string in the range (inclusive).

StringRangeFilterInput.to ● String scalar

The ending string in the range (inclusive). Optional.

Member Of

ContactFilterInput input