Is there a way to export a complete set of events where we can
Filter by cohort, and
filter by user ID
?
Should have mentioned that data query is going the be using the API. We're doing a competition, and want to do a daily extraction of all users (user id's) who are in a specific cohort
Thanks, Ansh! Do you know if there's a limit to how many events are returned?
Hans P. On one request, Mixpanel would return 100k events. If you have more than that, you need to chunk it down to get everything properly. This is usually what you'll need to do:
First get the event counts for the time period you're looking at.
If any event has greater than 100k rows, then slice it by dates.
And, send multiple requests.
If you need help, lemme know.
