What is the time complexity of fetching data from a table that is referenced in another table?
const image_schema = () => { const common_fields = { user_id: { type: mongoose.Schema.Types.ObjectId, ref: "user", required: true, }, file_name:...
const image_schema = () => { const common_fields = { user_id: { type: mongoose.Schema.Types.ObjectId, ref: "user", required: true, }, file_name:...