Skip to content

Instantly share code, notes, and snippets.

@aroc
Created May 29, 2015 21:45
Show Gist options
  • Save aroc/9bffd2e3104ae262e31f to your computer and use it in GitHub Desktop.
Save aroc/9bffd2e3104ae262e31f to your computer and use it in GitHub Desktop.
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