20 lines
454 B
Plaintext
20 lines
454 B
Plaintext
|
[[search-facets-query-facet]]
|
||
|
=== Query Facets
|
||
|
|
||
|
A facet query allows to return a count of the hits matching the facet
|
||
|
query. The query itself can be expressed using the Query DSL. For
|
||
|
example:
|
||
|
|
||
|
[source,js]
|
||
|
--------------------------------------------------
|
||
|
{
|
||
|
"facets" : {
|
||
|
"wow_facet" : {
|
||
|
"query" : {
|
||
|
"term" : { "tag" : "wow" }
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
--------------------------------------------------
|