We added a new field to the schema of our engine, but not all of the documents have the field yet, which is named "status". When we do the App Search query below, we get the error, "Filters contains invalid key: status". Is this because all of the documents don't have "status" yet or is "status" a keyword and we need to rename the field?
{
"query": "",
"page": {
"current": 1,
"size": 50
},
"sort": [
{
"gpa": "desc"
},
{
"risk_number": "asc"
},
{
"name": "asc"
}
],
"filters": {
"all": [
{
"status": [
"current"
]
}
]
}
}