deno.land / x / mongoose@6.7.5 / types / populate.d.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
declare module 'mongoose' {
/** * Reference another Model */ type PopulatedDoc< PopulatedType, RawId extends RefType = (PopulatedType extends { _id?: RefType; } ? NonNullable<PopulatedType['_id']> : Types.ObjectId) | undefined > = PopulatedType | RawId;
interface PopulateOptions { /** space delimited path(s) to populate */ path: string; /** fields to select */ select?: any; /** query conditions to match */ match?: any; /** optional model to use for population */ model?: string | Model<any>; /** optional query options like sort, limit, etc */ options?: QueryOptions; /** correct limit on populated array */ perDocumentLimit?: number; /** optional boolean, set to `false` to allow populating paths that aren't in the schema */ strictPopulate?: boolean; /** deep populate */ populate?: string | PopulateOptions | (string | PopulateOptions)[]; /** * If true Mongoose will always set `path` to a document, or `null` if no document was found. * If false Mongoose will always set `path` to an array, which will be empty if no documents are found. * Inferred from schema by default. */ justOne?: boolean; /** transform function to call on every populated doc */ transform?: (doc: any, id: any) => any; }
interface PopulateOption { populate?: string | string[] | PopulateOptions | PopulateOptions[]; }}
mongoose

Version Info

Tagged at
a year ago