Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/mongoose/types/index.d.ts>mongoose.Schema#virtual

MongoDB object modeling designed to work in an asynchronous environment.
Go to Latest
method mongoose.Schema.prototype.virtual
import { mongoose } from "https://deno.land/x/mongoose@7.7.0/types/index.d.ts";
const { Schema } = mongoose;

Creates a virtual type with the given name.

Type Parameters

optional
T = HydratedDocument<DocType, TVirtuals & TInstanceMethods, TQueryHelpers>

Parameters

name: keyof TVirtuals | string
optional
options: VirtualTypeOptions<T, DocType>