Type alias FulltextIndex

FulltextIndex: GenericIndex & {
    fields: [string];
    minLength: number;
    type: "fulltext";
}

An object representing a fulltext index.

Type declaration

  • fields: [string]
  • minLength: number
  • type: "fulltext"

Deprecated

The fulltext index type was deprecated in ArangoDB 3.10. Use views.ArangoSearchView instead.