Introduction
Migration
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; }