my search on a field containing apostrophe with elasticsearch not returning results. example of field : Objet de l'opération de crédit here is my query:
{
"size": 100,
"query": {
"bool": {
"must": [{
"match_phrase": {
"Objet de l'opération de crédit": {
"query": "SMD : Investissement locatif",
"slop": 0,
"zero_terms_query": "NONE",
"boost": 1.0
}
}
}
],
"adjust_pure_negative": true,
"boost": 1.0
}
}
}
this query does not return results and only for fields with apostrophe help please i am new to elasticsearch