mongoose foreign key example
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const IngredientSchema = new Schema({
name: String
});
const RecipeSchema = new Schema({
name: String,
ingredients:[
{ type: Schema.Types.ObjectId, ref: 'Ingredient' }
]
});