Term level queriesedit

While the full text queries will analyze the query string before executing, the term-level queries operate on the exact terms that are stored in the inverted index.

These queries are usually used for structured data like numbers, dates, and enums, rather than full text fields. Alternatively, they allow you to craft low-level queries, foregoing the analysis process.

NEST exposes all of the term queries available in Elasticsearch

See the Elasticsearch documentation on Term level queries for more details.