Type alias WeaviateGenericObject<T, V>

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

Type Parameters

  • T
  • V

Type declaration

  • 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.