Elasticsearch - Advanced Patterns
What is missing or incorrect in this percolate query snippet?
{
"query": {
"percolate": {
"field": "stored_query"
}
}
}What is missing or incorrect in this percolate query snippet?
{
"query": {
"percolate": {
"field": "stored_query"
}
}
}percolate query requires a document parameter to specify the document to match against stored queries.field but omits the document parameter.field name can be arbitrary as long as it matches the mapping; wrapping in match is not required; percolate queries are valid inside query.document parameter is missing, which specifies the document to match -> Option D15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions