If I were to create a query like this:
"query": {
"query_string": {
"query": "User:mjohnst",
"default_field": "Text",
"fields": [
"Text",
"ProcessedText"
],
"default_operator": "and",
"lowercase_expanded_terms": false
}
}
Where the query_string -> query is specifying a field explicitly, but the fields property is set to other fields, what is the expected behavior? Will User, Text, and ProcessedText be searched, or just User?