From 6f66e85b1e2ea628cf0caea06df2ccd3b36ccb9b Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Wed, 18 Dec 2019 19:03:54 +0000 Subject: [PATCH] Increase facet limit. --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 5de4e45..a3260d4 100755 --- a/app.py +++ b/app.py @@ -767,7 +767,7 @@ def get_db_items(params): def get_db_facets(params): t = aliased(Triple) q = database.session.query(t.predicate_id, func.count().label('count'), t.object_id) - facet_limit = 15 + facet_limit = 18 for pid, qid in params: q = (q.join(Triple, t.subject_id == Triple.subject_id, aliased=True)