@resistdesign/voltra
    Preparing search index...

    Type Alias StructuredTermIndexItem

    StructuredTermIndexItem: StructuredTermIndexKey & {
        docId: DocId;
        field: string;
        kind: typeof structuredTerm;
        mode: StructuredTermMode;
        value: WhereValue;
    }

    Conceptual term index record.

    Type Declaration

    • docId: DocId

      Document id containing the term.

    • field: string

      Field name being indexed. Use a type-qualified field name when multiple types share fields.

    • kind: typeof structuredTerm

      Logical item kind in the shared physical table.

    • mode: StructuredTermMode

      Term match mode for the entry.

    • value: WhereValue

      Stored field value.