@@@
is ParadeDB’s full text search operator that means “find all rows matching a full text query.”
@@@
accepts two styles of queries:
@@@
is the field to search against, and the right-hand side is a query string.
For example, the following query returns all rows where the description
field matches the query shoes
.
+
, ^
, `
, :
, {
, }
, "
, [
, ]
, (
, )
, <
, >
,~
, !
, \\
, \*
, and SPACE
must
be escaped by a \
inside the query term.
@@@
is the key field and the right-hand side is
a query builder function or JSON object. This syntax is necessary for capturing more complex query types
like fuzzy matching or term-level search that cannot be expressed by query strings.