weaviate-client
    Preparing search index...

    Type Alias PropertyConfig

    type PropertyConfig = {
        dataType: string;
        description?: string;
        indexFilterable: boolean;
        indexInverted: boolean;
        indexRangeFilters: boolean;
        indexSearchable: boolean;
        name: string;
        nestedProperties?: PropertyConfig[];
        tokenization: string;
        vectorizerConfig?: PropertyVectorizerConfig;
    }
    Index

    Properties

    dataType: string
    description?: string
    indexFilterable: boolean
    indexInverted: boolean
    indexRangeFilters: boolean
    indexSearchable: boolean
    name: string
    nestedProperties?: PropertyConfig[]
    tokenization: string
    vectorizerConfig?: PropertyVectorizerConfig