I am trying to do a query that will search for arbitrary strings, but will ignore if the string is/isn't in a specific field. I still want to see the results from that field, though. Example: index = my_index AND *widget*
| <ignore> my_field_42 Whether my_field_42 contains the word "widget" or not should not matter to the search, but it should still show it's field values in the results. Result 1: my_field_1 = "hello world"
my_field_2 = "AwesomeWidget69"
...
my_field_42 = "your mom" Result 2: my_field_1 = "hello world"
my_field_23 = "Widgets are cool"
...
my_field_42 = "Look, a widget!"
... View more