weaviate-client
    Preparing search index...

    Type Alias UpdateObject<T>

    The available options to the data.update method.

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

    Type Parameters

    • T
    Index

    Properties

    id: string

    The ID of the object to be updated

    properties?: Partial<NonReferenceInputs<T>>

    The properties of the object to be updated

    references?: Partial<ReferenceInputs<T>>

    The references of the object to be updated

    vectors?: number[] | Vectors