Type alias InternalArangosearchIndex

InternalArangosearchIndex: {
    analyzers: string[];
    fields: Record<string, Record<string, any>>;
    figures?: Record<string, any>;
    id: string;
    includeAllFields: boolean;
    storeValues: "none" | "id";
    trackListPositions: boolean;
    type: "arangosearch";
    view: string;
}

An object representing an arangosearch index.

Type declaration

  • analyzers: string[]
  • fields: Record<string, Record<string, any>>
  • Optional figures?: Record<string, any>
  • id: string
  • includeAllFields: boolean
  • storeValues: "none" | "id"
  • trackListPositions: boolean
  • type: "arangosearch"
  • view: string