I have the following field and values for my documents:
publication_year
: 2000, 2001, 2002, ..., 2020
I'd like to aggregate by publication_year
, return the top 5 buckets, but also add specific buckets to the result (selected by the user), even if they are not among the top 5 buckets.
Desired result:
2001 (100)
2002 (88)
2003 (5) - selected
2007 (77)
2014 (15)
Basically, how can I include one or more particular facet values among the returned buckets ?