Skip to content

Commit

Permalink
asdfoo
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Sikina committed Jul 18, 2024
1 parent fe80364 commit 6c0f474
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
package edu.harvard.dbmi.avillach.dictionary.facet;

import edu.harvard.dbmi.avillach.dictionary.filter.Filter;
import edu.harvard.dbmi.avillach.dictionary.filter.FilterQueryGenerator;
import edu.harvard.dbmi.avillach.dictionary.filter.QueryParamPair;
import edu.harvard.dbmi.avillach.dictionary.util.MapExtractor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Pageable;
import org.springframework.jdbc.core.namedparam.MapSqlParameterSource;
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;
import org.springframework.stereotype.Repository;
import org.springframework.util.CollectionUtils;
import org.springframework.util.StringUtils;

import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.stream.Collectors;

@Repository
public class FacetRepository {
Expand Down Expand Up @@ -46,7 +40,7 @@ WITH facet_counts_q AS (
SELECT
facet_category.name AS category_name,
parent_facet.name AS parent_name,
facet_count_q.facet_count AS facet_count,
facet_counts_q.facet_count AS facet_count,
facet_category.display as category_display,
facet_category.description as category_description,
facet.name, facet.display, facet.description
Expand Down

0 comments on commit 6c0f474

Please sign in to comment.