Introduction
Migration
Configuration
Fundamentals
Advanced
Authentication & Security
API & Documentation
ORM
Orchestration & Workflow
Testing
Third-parties
Links
Premium ConfigSource
Premium TestContainers
Appearance
import { Unique } from "@tsed/mongoose";
See /packages/orm/mongoose/src/decorators/unique.ts.
function Unique(unique?: boolean | any): Function;
Tell Mongoose to ensure a unique index is created for this path.
@Model() export class EventModel { @Unique() index: string; }