Hi,
I want to create a DSL query that applies wildcard syntax for multiple values that are OR connected. How can I do this in ES?
By using a terms query I can connect different values as OR for the same field. By using wildcard query I can search with wildcards. But how can I combine this?
And writing all combinations toghether in a bool query would connect them with AND.
So how can I explain follow sentence in query dsl?
Search all Users with field "name" starting with "S" or "T"?
Regards
Marco