I indexed the field wrong instead of string i put the type object.
What I tried
Tried to update the type didn't work
curl --location --request PUT 'http://localhost:9200/activity_scheduled_departure/_mapping' \
--header 'Content-Type: application/json' \
--data-raw '{
"properties": {
"manualUpdate": {
"type": "string"
}
}
}'
Tried to delete via this link that didn't work Remove a field from a Elasticsearch document
Have anyone another idea how to solve my problem ?