field-specs
Include/Exclude specs
The Include/Exclude field can contains two arrays:
include
array which lists what needs to be included in the query.exclude
array which lists what needs to be excluded from the query.
For instance, when looking for leads, you can include some currentJobTitle
and exclude some others:
{
"currentJobTitle": {
"include": ["CTO"],
"exclude": ["Senior engineer"]
}
}
Range specs
The Range field contains comparison operators and numerical values only. Some examples are listed below:
{
"headcount": {
">=": 10,
"<": 20
}
}
{
"headcount": {
">": 10,
"<=": 20
}
}
{
"headcount": {
">": 10,
"<": 20
}
}
The operators can be >
(greater than), <
(less than), >=
(greater or equal), '<=' (less or equal).
You are responsible for giving a range that makes sense.