Interface CollectionDefinition<Schema>

Represents the options for the createCollection command.

Field

vector - Options related to vector search.

Field

indexing - Options related to indexing.

Field

defaultId - Options related to the default ID.

interface CollectionDefinition<Schema> {
    defaultId?: CollectionDefaultIdOptions;
    indexing?: CollectionIndexingOptions<Schema>;
    vector?: CollectionVectorOptions;
}

Type Parameters

Hierarchy (view full)

Properties

Options related to the default ID.

Options related to indexing.

Options related to vector search.