Type parameters
-
T: ItemData
Hierarchy
-
GlobalFilters
- GlobalFiltersWithWhere
Methods
and
-
Combining multiple filters with a logical AND.
Parameters
-
Rest ...operands: Filter[]
Returns Filter
-
fts
-
Full-text search.
Parameters
-
query: string
Returns Filter
-
not
-
Combining multiple filters with the logical negation.
Parameters
-
Rest ...operands: Filter[]
Returns Filter
-
or
-
Combining multiple filters with a logical OR.
Parameters
-
Rest ...operands: Filter[]
Returns Filter
-
where
-
The [[g.where]] method allows filtering collection items.
Parameters
-
fc: FilterClosure<T>
Returns Filter
-
-
The [[g.where]] method allows filtering collection items.
Parameters
-
eql: EqlQuery
-
Optional params: EqlParams
Returns Filter
-
Global functions for creating a request filter
GlobalFiltersWithWhere provides methods that allow linking filtering parameters in the Search.where method. It also provides the where function for the
Global
object, which can be used to work with EQL expressions and withfilterClosure
.