The parse query accepts a Tantivy query string. The intended use case is for accepting raw query strings provided by the end user. To use it, pass the key field to the left-hand side ofDocumentation Index
Fetch the complete documentation index at: https://docs.paradedb.com/llms.txt
Use this file to discover all available pages before exploring further.
@@@ and pdb.parse('<query>') to the right-hand side.
Lenient Parsing
By default, strict syntax parsing is used. This means that if any part of the query does not conform to Tantivy’s query string syntax, the query fails. For instance, a valid field name must be provided before every query (i.e.category:footwear).
By setting lenient to true, the query is executed on a best-effort basis. For example, if no field names are provided, the query is executed over all fields in the index.
Conjunction Mode
By default, terms in the query string areORed together. With conjunction_mode set to true, they are instead ANDed together.
For instance, the following query returns documents containing both sleek and shoes.