Skip to content

Instantly share code, notes, and snippets.

View youngj's full-sized avatar

Jesse Young youngj

View GitHub Profile
@youngj
youngj / gist:cdec35d1ab122b2f4556
Last active August 29, 2015 14:20
List contacts in group
var group = project.getOrCreateGroup("Today Non-Respondents");
var query = group.queryContacts({
sort: 'name'
});
var maxContacts = 1000;
var contacts = query.limit(maxContacts).all();
var contactsInfo;
if (contacts.length)
{