rest icon indicating copy to clipboard operation
rest copied to clipboard

How to add reference model

Open bhaireshm opened this issue 4 years ago • 1 comments

How to generate the below case??

If i want to add reference to a column for eaxmple:

User = { name: String, email: String, address: { type : mongoose.Type.ObjectId, ref: "Address" } }

bhaireshm avatar May 28 '21 07:05 bhaireshm

U use

address: { type : Schema.ObjectId, ref: "Address" }

kasumo-spec avatar Nov 04 '21 17:11 kasumo-spec