Basic Usage

The conjunction_mode parameter controls the default boolean logic applied to query terms. When not specified, the search function employs disjunction (OR) logic. Setting conjunction_mode to true switches the default logic to conjunction (AND).

SELECT * FROM <index_name>.search(
  '<query>',
  conjunction_mode => true
);