How to fuzzy search a subset of the result?

I have a need to search through collapsed results, is this possible?
Something like this

{
  "query": {
    "match_all": {}
  },
  "sort": { "createdTime": "desc" },
  "collapse": {
    "field": "name.raw",
    "query":{
      "match": {
        "name": {
          "query": "John",
          "fuzziness": "AUTO"
        }
      }
    },
    "size": 6
  }
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.