Instead of multiple fields to match, I want to give a boosted score. It's part of a bigger query, so unfortunately I cannot avoid having to boost this part of the query.
I tried:
"terms": {
"some.keyword": ["a12c", "b12c"],
"boost": 10
}
and:
"terms": {
"some.keyword": {
"values": ["a12c", "b12c"],
"boost": 10
}
}
but both do not work.