package com.example.database; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; @Repository public interface RecipeIngredientRepo extends CrudRepository { // Custom query: find all ingredients for a recipe Iterable findByRecipe(Recipe recipe); }