-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
I would expect this es query
{
"match": {
"all": {
"query": "bio"
}
}
}to search most fields, including programme titles. But it seems not to.
Looking in the programme/_mapping i see this
{
"title": {
"path_match": "title.*",
"mapping": {
"type": "text"
}
}
},I would guess that was intended to be:
{
"title": {
"path_match": "title.*",
"mapping": {
"copy_to": "_all", <====
"type": "text"
}
}
},The same might apply to other fields, I haven't gone through everything