0

Can I write the facet query like this in spring-data-solr?

json.facet={
    "topic_aggr":{
        "type": "terms",
        "field": "topic_ss",
        "limit": 10,
        "numBuckets": true,
        "allBuckets": true,
        "facet": {
            "updateTime":"max(createTime_dt)"
        }
    }
}
Pavel_K
  • 10,748
  • 13
  • 73
  • 186
CuteDoge
  • 109
  • 1
  • 2
  • 8

1 Answers1

1

It is not mentioned at all in the docs, only vanilla and Pivot faceting, so I would say: clearly not.

Persimmonium
  • 15,593
  • 11
  • 47
  • 78