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