Hey,
I'm trying to send to following data so ill get results only from "Tanach with Nikkud".
Tried a lot of regex variants and fields name. It seems that path is the only field I manage to filter,,
Cant figure what I'm missing here..
{
"size": 10,
"query": {
"function_score": {
"field_value_factor": {
"field": "pagesheetrank",
"missing": 0.04
},
"query": {
"bool": {
"must": {
"match_phrase": {
"exact": {
"query": "משה"
}
}
},
"filter": {
"bool": {
"should": [
{
"regexp": {
"version": "Tanach with Nikkud"
}
}
]
}
}
}
}
}
}
}