weaviate-client
    Preparing search index...

    Type Alias WeaviateGenericObject<T, V>

    type WeaviateGenericObject<T, V> = {
        metadata: ReturnMetadata | undefined;
        properties: ReturnProperties<T>;
        references: ReturnReferences<T> | undefined;
        uuid: string;
        vectors: V;
    }

    Type Parameters

    • T
    • V
    Index

    Properties

    metadata: ReturnMetadata | undefined

    The returned metadata of the object.

    properties: ReturnProperties<T>

    The generic returned properties of the object derived from the type T.

    references: ReturnReferences<T> | undefined

    The returned references of the object derived from the type T.

    uuid: string

    The UUID of the object.

    vectors: V

    The returned vectors of the object.