Created
May 29, 2015 21:45
-
-
Save aroc/9bffd2e3104ae262e31f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var videoIds = { | |
setOne: [1, 2, 3, 4, 5], | |
setTwo: [6, 7, 8, 9, 10] | |
}; | |
var query = new Keen.Query("count", { | |
eventCollection: "videos", | |
filters: [ | |
{ | |
property_name: 'video_id', | |
operator: 'in', | |
property_value: videoIds.setOne | |
}, | |
{ | |
property_name: 'video_id', | |
operator: 'in', | |
property_value: videoIds.setTwo | |
} | |
] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment