Skip to content

@lancedb/lancedb β€’ Docs


@lancedb/lancedb / Occur

Enumeration: Occur

Enum representing the occurrence of terms in full-text queries.

  • Must: The term must be present in the document.
  • Should: The term should contribute to the document score, but is not required.
  • MustNot: The term must not be present in the document.

Enumeration Members

Must

Must: "MUST";

MustNot

MustNot: "MUST_NOT";

Should

Should: "SHOULD";