Files
thymecrunch/demo/src/main/java/com/example/database/RecipeIngredientRepo.java
T
2026-02-26 17:38:13 -07:00

10 lines
359 B
Java

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