Trying to retrieve a list of events from a list of specific accounts (using account ids) and sort these events by date.
Here is my current map function:
function(doc) {
if (doc.doc_type == 'event' && doc.account_id) {
emit([doc.date_start,doc.account_id],doc);
}
}
This outputs the correct data when run in Futon for all accounts, however, I am unclear on how to construct my request query or whether I need to modify my map function to get this accomplished? All that matters is that the events are in one of the accounts specified and that the event dates are sorted in order (descending).