Elasticsearch multi query two value for each column filter -


i have query

get _search { "size":6, "query":{     "filtered":{         "query":{             "query_string":{                 "query":"some keyword",                 "fields":["title","content"]}                    },     "filter":{         "match":{             "channel.sitename":"photo video"}}                 }         }, "sort":[     {"_score":{"order":"asc"},     "date":{"order":"desc"}}     ], "aggs":{"sitenames":{"terms":{"field":"channel.sitename"}}} } 

and works,

but abstract value query

i want 3 values each sitename = photo , video


Comments

Popular posts from this blog

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

python - How do I create a list index that loops through integers in another list -

c# - “System.Security.Cryptography.CryptographicException: Keyset does not exist” when reading private key from remote machine -