Using the Android 2.0 ContactsContract API, is it possible to build a list of objects representing contacts in a Contact Group like this:
public class GroupContact {  
    public String displayName;
    public List<String> phoneNumbers;
}
While making fewer than O(n) SQL queries?