Type alias GenerativeObject<T>

GenerativeObject<T>: T extends undefined
    ? GenerativeNonGenericObject
    : GenerativeGenericObject<T>

An object belonging to a collection as returned by the methods in the collection.generate namespace.

Depending on the generic type T, the object will have subfields that map from T's specific type definition. If not, then the object will be non-generic and have a properties field that maps from a generic string to a WeaviateField.

Type Parameters

  • T