Skip to content

Instantly share code, notes, and snippets.

@jeesim2
Last active August 29, 2015 14:07
Show Gist options
  • Save jeesim2/d22166c2d10238f4af81 to your computer and use it in GitHub Desktop.
Save jeesim2/d22166c2d10238f4af81 to your computer and use it in GitHub Desktop.
POST http://xxxxxxxx:9200/images/baby/_search
# 이미지만 검색. 잘 됨
{
"query": {
"image": {
"theme_image": {
"feature": "JCD",
"image": "/9j/2wBDAA ..... gGBgcGBK//9k="
}
}
}
}
# query에 title을 추가하고 싶으나 여러가지를 돌려바도...
{
"query": {
"image": {
"theme_image": {
"feature": "JCD",
"image": "/9j/2wBDAA ..... gGBgcGBK//9k="
}
},
"query_string": {
"fields": [
"title",
"tags"
],
"query": "Ab* Cd*"
}
}
}
or
{
"query": {
"match_all": {}
},
"filter": {
"and": [
{
"image": {
"theme_image": {
"feature": "JCD",
"image": "/9j/2wBDAAgGBgcGBQgHBwK//9k="
}
}
},
{
"terms": {
"title": [
"red"
]
}
}
]
}
}
or
{
"query": {
"image": {
"theme_image": {
"feature": "JCD",
"image": "/9j/2wBDAAgGBgc ..... GBQgHBwK//9k="
}
},
"term": {
"title": "color"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment