hi
does anyone explain differences between with .raw and without .raw?
eg:
{
"query": {
"bool": {
"must": [
{
"term": {
"project_type.raw": "TEST"
}
}
]
}
}
}
{
"query": {
"bool": {
"must": [
{
"term": {
"project_type": "TEST"
}
}
]
}
}
}