TextFilter
Filter on text fields (e.g. name, industry).
All filters are mutually exclusive for a given field.
input TextFilter {
equals: String
startsWith: String
in: [String!]
between: [String!]
before: String
after: String
}
Fields
equals
● String
Exact match
startsWith
● String
Match the beginning of the string
in
● [String!]
Match any of the provided values
between
● [String!]
Matches values in the given range (inclusive). Two values only.
before
● String
Matches values before (or equal to) the given value
after
● String
Matches values after (or equal to) the given value
Example
{
"equals": "TESTCO LIMITED",
"startsWith": "TESTCO",
"in": [
"Construction",
"Information and communication > IT Service"
],
"between": [
"a",
"d"
],
"before": "m",
"after": "i"
}
Member Of
Filter
input