Type alias InvertedIndexField

InvertedIndexField: {
    analyzer?: string;
    cache?: boolean;
    features?: AnalyzerFeature[];
    includeAllFields?: boolean;
    name: string;
    nested?: InvertedIndexNestedField[];
    searchField?: boolean;
    trackListPositions?: boolean;
}

An object representing a field in an inverted index.

Type declaration

  • Optional analyzer?: string
  • Optional cache?: boolean
  • Optional features?: AnalyzerFeature[]
  • Optional includeAllFields?: boolean
  • name: string
  • Optional nested?: InvertedIndexNestedField[]
  • Optional searchField?: boolean
  • Optional trackListPositions?: boolean