Filtering Player Statistics Events in Mixpanel for Scores Over 30
Assume you are passing Player Statistics event the following event properties - score event property - [1,17,36,9] player event property - ["A", "B", "C", "D"] score event property - [1,31,20,4] player event property - ["Q", "X", "Z", "L"] Now you would like to only consider the events where the score event property was greater than 30, and then you would like to get the score output as 36 and the player name as C and output as 31 and player name as X How can you do this in Mixpanel? Assume if it is being passed in array, how do you get an output in Mixpanel - For example, here is the array structure - "Player": [ "A", "B", "C", "D" ]