weaviate-client
Version:
JS/TS client for Weaviate
16 lines (15 loc) • 309 B
TypeScript
export type Alias = {
collection: string;
alias: string;
};
export type CreateAliasArgs = {
collection: string;
alias: string;
};
export type UpdateAliasArgs = {
newTargetCollection: string;
alias: string;
};
export type AliasListAllOptions = {
collection?: string | undefined;
};