Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/org/kpmp/cellType/CellTypeRepository.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public interface CellTypeRepository extends CrudRepository<CellType, Integer> {
List<CellType> findByCellTypeContainingOrSynonymContaining(@Param("searchTerm") String searchTerm);

@Cacheable("cellTypeIsNotNullOrderByCellTypeOrdering2025")
@Query(value = "SELECT * FROM cell_type_2025 WHERE cell_type IS NOT NULL ORDER BY cell_type_order ASC", nativeQuery = true)
@Query(value = "SELECT * FROM cell_type_2025 WHERE cell_type IS NOT NULL AND release_sunset IS NULL ORDER BY cell_type_order ASC", nativeQuery = true)
List<CellType> findAllByCellTypeIsNotNullOrderByCellTypeOrdering2025();

@Cacheable("structureRegionContaining")
Expand Down
Loading