A have a string, let's say "Ab Cd"
I have documents with fields: ['a', 'b', 'c', 'd', ... 'z'] (not all documents have all fields)
I want search only in fields 'a', 'c', 'f', 'x' but I want to return all fields in document.
Hit is successful if ANY of fields 'a', 'c', 'f', 'x' contains string beginning 'Ab' or 'Cd'.
Now I use this but it searches in ALL fields not in selected ones.
{'query': {'query_string': {'query': "Ab* Cd*"}}}