Introduction
Migration
Appearance
import { Text } from "@tsed/mongoose";
See /packages/orm/mongoose/src/types/decorators/text.ts.
function Text(text?: boolean | number | any): PropertyDecorator;
If truthy, Mongoose will build a text index on this path.
@Model() export class EventModel { @Text() field: string; }