Skip to content

Select

@tsed/mongoose

Usage

typescript
import { Select } from "@tsed/mongoose";

See /packages/orm/mongoose/src/types/decorators/select.ts.

Overview

ts
function Select(select?: boolean | any): Function;

Description

Tell Mongoose to set default select() behavior for this path.

Example

typescript
@Model()
export class EventModel {
  @Select()
  field: string;
}

Released under the MIT License.