Queries supported by bleve:
A term query is the simplest possible query. It performs an exact match in the index for the provided term.
Most of the time users should use a Match Query instead.
A match query is like a term query, but the input text is analyzed first. An attempt is made to use the same analyzer that was used when the field was indexed.
The match query can optionally perform fuzzy matching. If the fuzziness parameter is set to a non-zero integer the analyzed text will be matched with the specified level of fuzziness. Also, the prefix_length parameter can be used to require that the term also have the same prefix of the specified length.
A phrase query searches for terms occurring in the specified position and offsets.
The phrase query is performing an exact term match for all the phrase constituents. If you want the phrase to be analyzed, consider using the Match Phrase Query instead.
The match phrase query is like the phrase query, but the input text is analyzed and a phrase query is built with the terms resulting from the analysis.
The prefix query finds documents containing terms that start with the provided prefix.
A fuzzy query is a term query that matches terms within a specified edit distance (Levenshtein distance). Also, you can optionally specify that the term must have a matching prefix of the specified length.
The conjunction query is a compound query. Result documents must satisfy all of the child queries.
The disjunction query is a compound query. Result documents must satisfy a configurable min
number of child queries. By default this min
is set to 1.
The boolean query is useful combination of conjunction and disjunction queries. The query takes three lists of queries:
minShould
of these queriesThe minShould
value is configurable, defaults to 0.
The numeric range query finds documents containing a numeric value in the specified field within the specified range. You can omit one endpoint, but not both. The inclusiveMin
and inclusiveMax
properties control whether or not the end points are included or excluded.
The date range query finds documents containing a date value in the specified field within the specified range. You can omit one endpoint, but not both. The inclusiveStart and inclusiveEnd properties control whether or not the end points are included or excluded.
The query language query allows humans to describe complex queries using a simple syntax. There is a separate page with the full query language specification
The match all query will match all documents in the index.
The match none query will not match any documents in the index.
The doc ID query will match only documents that contain one of the supplied document identifiers.