Yes! When adding multiple inline filters to a single event metric in Insights, you can choose whether the query matches all of the filters or any of them by clicking the and/or toggle beside the filters. [Filters doc]
However, based on the knowledge sources, this toggle applies globally to all filters on that event — meaning you select either "And all" or "Or any" for the entire set of filters on that metric. There is no indication that you can mix both "And all" and "Or any" logic within the filters of a single event metric at the same time.
github.com/mixpanel/docs/…/…
If you need more complex logic (e.g., combining AND and OR conditions), consider these alternatives:
Custom Properties – Use boolean logic (and, or, not) to create a computed property that encodes your condition. [Custom Properties]
Custom Events – Create a virtual event filtered by a specific set of property conditions. [Custom Events]
Multiple metrics with inline filters – Split your conditions across separate metrics and use a Formula to combine them. [Formulas]