I'm creating an Elastic Search query that queries on two fields using BodyBuilder.js.
One side of the query is string matching to the event type, the other takes in an array of strings and is satisfied if any match.
Query(type) && AnyQuery(arrayOfStrings)
What's the recommended way to both combine queries and how to query for any of an array?