weaviate-client
    Preparing search index...

    Type Alias ReplaceObject<T>

    The available options to the data.replace method.

    type ReplaceObject<T> = {
        id: string;
        properties?: NonReferenceInputs<T>;
        references?: ReferenceInputs<T>;
        vectors?: number[] | Vectors;
    }

    Type Parameters

    • T
    Index

    Properties

    id: string

    The ID of the object to be replaced

    properties?: NonReferenceInputs<T>

    The properties of the object to be replaced

    references?: ReferenceInputs<T>

    The references of the object to be replaced

    vectors?: number[] | Vectors