summaryrefslogtreecommitdiff
path: root/docs/reference/search/facets/query-facet.asciidoc
blob: 3f360da4bdf65712d55af218ea9d11430275a19d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[[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" }
            }
        }
    }
}    
--------------------------------------------------