"_index": "test",
"_type": "_doc",
"_id": "1",
"_version": 3,
"_score": 0,
"fields": {
"number": [
2
],
"statu": [
"active"
],
"word": [
"test2"
],
"word.keyword": [
"test2"
],
"statu.keyword": [
"active"
]
}
}
It was looking like this before 7.12 which is way better.
{
"_index": "test",
"_type": "_doc",
"_id": "4",
"_version": 1,
"_score": 0,
"_source": {
"number": 2,
"word": "test2",
"statu": "done"
}
}
how do I get this to work like before?