Have you had a chance to use relations like the ones below?
Recipe.belongsToMany(Ingredient, { through: RecipeIngredient }) Ingredient.belongsToMany(Recipe, { through: RecipeIngredient })
I'm enjoying your code with Typescript and I am wanting to use the relationships.
Have you had a chance to use relations like the ones below?
Recipe.belongsToMany(Ingredient, { through: RecipeIngredient }) Ingredient.belongsToMany(Recipe, { through: RecipeIngredient })I'm enjoying your code with Typescript and I am wanting to use the relationships.