Is there a negative impact on using a string input type vs numeric input type on the search query?
For e.g. below in second example, quoted 10
{
"query": {
"range": {
"age": {
"gte": 10
}
}
}
}
vs.
{
"query": {
"range": {
"age": {
"gte": "10"
}
}
}
}