I need to add another param 'type' to my query to filter with
This is what I have right now and it works for me:
conn = pyes.ES(settings.ES_URL)
query_string = self.request.GET['q'].lower()
type = self.request.GET['type'].lower()#not used yet!
...
query1 = pyes.MultiMatchQuery(self.FIELDS_SEARCH, query_string, operator='and')
search1 = pyes.Search(query=query1, filter=filters, fields=self.RESPONSE_FIELDS, size=num, index_boost=1)
response = conn.search_multi([search1, search2], indices_list=[es_alias] * 2, doc_types_list=['asset', 'people'] * 2)
response._do_search()
How can I add filtering by param "type"?
I think you are looking for bool query
query1 = pyes.MultiMatchQuery(self.FIELDS_SEARCH, query_string, operator='and')
typequery = pyes.QueryStringQuery(query="type_value",default_field="type")
combinequery = pyes.BoolQuery(must=[query1, typequery])
searchquery = pyes.Search(query=combinequery,filter=filters, fields=self.RESPONSE_FIELDS, size=num, index_boost=1)
Here is the link to query string, you can replace must
with should
if you want OR
condition.
Does this help?