Skip to content

Instantly share code, notes, and snippets.

@santiagobasulto
Created May 30, 2012 12:32
Show Gist options
  • Save santiagobasulto/2835978 to your computer and use it in GitHub Desktop.
Save santiagobasulto/2835978 to your computer and use it in GitHub Desktop.
Most important queries
{
"query" : {
"bool":{
"must" :[
{"query_string" : {"query" : "Sam*"}},
{"term" : { "subcategoria" : "monitores" }},
{"term" : { "resolucion_pantalla" : "1024x768" }}
]
}
},
"facets" : {
"tamaño" : { "terms" : {"field" : "tamanno_pantalla"} },
"respolucion" : { "terms" : {"field":"resolucion_pantalla"} },
"HD" : { "terms" : {"field":"full_hd"} }
}
}
{
"query": {
"filtered":{
"query" : {
"query_string" : {"query" : "Sam*"}
},
"filter":{
"and":[
{"term" : { "subcategoria" : "monitores" }},
{"term" : { "resolucion_pantalla" : "1920x1080" }}
]
}
}
},
"facets" : {
"tamaño" : { "terms" : {"field" : "tamanno_pantalla"} },
"respolucion" : { "terms" : {"field":"resolucion_pantalla"} },
"HD" : { "terms" : {"field":"full_hd"} }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment