spring data solr 是否支持 json.facet?

Does spring data solr support json.facet?

我可以在 spring-data-solr 中写这样的 facet 查询吗?

json.facet={
    "topic_aggr":{
        "type": "terms",
        "field": "topic_ss",
        "limit": 10,
        "numBuckets": true,
        "allBuckets": true,
        "facet": {
            "updateTime":"max(createTime_dt)"
        }
    }
}

docs 中根本没有提到,只有 vanilla 和 Pivot 分面,所以我会说:显然没有。