Hello
I have document:
{
"_id": 111
"price": 1000
"color": "red"
}
I'm use function_score with gauss function for get score by price.
Now, i need add +30 score if color == "green". Preferably without use groovy script.
But, if color != "green", then still get this document in result, just without these extra 30 points score.
There are ideas in which direction to look?
Thank you