'Elasticsearch alphabetical desc order turkish character problems

Alphabetical_desc when I want to make a sort, it first brings up the word "Pearl", and then brings up the word "Zara". My Template is as follows:

"analysis": {
  "filter": {
    "my_ascii_folding": {
      "type": "asciifolding",
      "preserve_original": true
    }
  },
  "analyzer": {
    "turkish_autocomplete": {
      "tokenizer": "autocomplete_tokenizer",
      "filter": [
        "lowercase",
        "my_ascii_folding"
      ]
    }
  }

I want it to start from Z first and be sorted. Can you help, thanks.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source