Interface EpisodeRepository


public interface EpisodeRepository
Repository is commented: so it's no more found by Spring
TODO remove if really useless
Author:
etienne-sf
  • Method Summary

    Modifier and Type
    Method
    Description
     
  • Method Details

    • findAppearsIn

      @Query(value=" select e.label from droid_appears_in dai, episode e where dai.droid_id = ?1 and dai.episode_id = e.id UNION ALL select e.label from human_appears_in hai, episode e where hai.human_id = ?1 and hai.episode_id = e.id ", nativeQuery=true) List<String> findAppearsIn(UUID id)