Type alias SimpleQueryFulltextOptions

SimpleQueryFulltextOptions: {
    index?: string;
    limit?: number;
    skip?: number;
}

Options for performing a fulltext query.

Deprecated

Simple Queries have been deprecated in ArangoDB 3.4 and can be replaced with AQL queries.

Type declaration

  • Optional index?: string

    Unique identifier of the fulltext index to use to perform the query.

  • Optional limit?: number

    Maximum number of documents to return.

  • Optional skip?: number

    Number of documents to skip in the query.

Generated using TypeDoc