diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-07-28 15:24:41 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-07-28 15:24:41 -0700 |
commit | 830d3d637525ff10131c9e002baf18279739629d (patch) | |
tree | 3a9bc9c0664ba048bd01cc5c461f4a6dfb71c7dc /python/fatcat_web | |
parent | 623cc4a9691abd8a776780cebf00e45ab3daf64c (diff) | |
download | fatcat-830d3d637525ff10131c9e002baf18279739629d.tar.gz fatcat-830d3d637525ff10131c9e002baf18279739629d.zip |
include container_id as a query boost term
Diffstat (limited to 'python/fatcat_web')
-rw-r--r-- | python/fatcat_web/search.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/fatcat_web/search.py b/python/fatcat_web/search.py index 55caa9c5..fe0610e5 100644 --- a/python/fatcat_web/search.py +++ b/python/fatcat_web/search.py @@ -192,6 +192,7 @@ def do_release_search( Q("bool", must_not=Q("exists", field="release_year")), Q("bool", must_not=Q("exists", field="release_type")), Q("bool", must_not=Q("exists", field="release_stage")), + Q("bool", must_not=Q("exists", field="container_id")), ], ) |