Use LIQE filters
Some import integrations let you narrow what NEXT imports with a LIQE filter query. The filter is a single text field in the Teamspace subscription settings.
LIQE filters are evaluated against the metadata NEXT receives from the source integration. The exact field names you can use depend on the integration.
Supported syntax
These query patterns are supported by the liqe parser used in this repo:
- Exact match:
field:value - Quoted phrase:
field:"multi word value" - Numeric comparison:
duration:>600,duration:>=900,amount:<=100000 - Boolean values:
open:true - Wildcards:
field:EMEA*,field:sales? - Boolean logic:
AND,OR,NOT - Grouping:
(condition1 AND condition2) OR condition3
Tips
- Field names must match the names exposed by the integration exactly.
- For list fields like
tagsorspeakers, match the individual value you want to include. - Use quotes when the value contains spaces or punctuation.
- Start simple, then add
AND,OR, and parentheses as needed. - Check the provider page for the exact fields available in that integration.