Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 1.1 KB

search-core.matcher.md

File metadata and controls

27 lines (19 loc) · 1.1 KB

Home > @yext/search-core > Matcher

Matcher enum

A Matcher is a filtering operation.

Signature:

export declare enum Matcher 

Enumeration Members

Member Value Description
Between "$between" A limitation of the dataset to a range of values.
Equals "$eq" An equals comparison.
GreaterThan "$gt" A greater than comparison.
GreaterThanOrEqualTo "$ge" A greater than or equal to comparison.
LessThan "$lt" A less than comparison.
LessThanOrEqualTo "$le" A less than or equal to comparison.
Near "$near" A comparison of whether an entity is within a certain radius of a certain location.
NotEquals "!$eq" A not equals comparison.