Hi Team,
Does elasticsearch multi_match phrase query supports custom synonyms in search time?
Below is the query
 {
                    "multi_match": {
                      "query": "add new document",
                      "fields": [
                        "title.en"
                      ],
                      "type": "phrase"
                    }
                  }
The search analyzer that we are using in title field has some custom synonyms but they are not working with phrase in multi_match. When we are changing from phrase to AND search in multi_match then synonyms are working fine.
Any idea?