Filter
Filter on a single field. Must have exactly one of text, number, boolean
input Filter {
tag: String!
type: String!
text: TextFilter
number: NumberFilter
boolean: BooleanFilter
}
Fields
tag
● String!
Scribe tag for the item to filter by
type
● String!
Type of the item (inc, bst, cfl, profile)
text
● TextFilter
Text filter (exclusive with number and boolean filter)
number
● NumberFilter
Number filter (exclusive with text and boolean filter)
boolean
● BooleanFilter
Boolean filter (exclusive with text and number filters)
Example
{
"tag": "increv",
"type": "inc",
"text": {
"equals": "TESTCO LIMITED",
"startsWith": "TESTCO",
"in": [
"Construction",
"Information and communication > IT Service"
],
"between": [
"a",
"d"
],
"before": "m",
"after": "i"
},
"number": {
"equals": 100000,
"above": 100000,
"below": 100000,
"between": [
"10",
"1000"
]
},
"boolean": {
"equals": true
}
}
Member Of
companiesWithFilters
query