readGroupMembersWith<Extra>(): Promise<{ members: Map<number, ListingWithCount[]>; more: Extra; }>
Read several groups' members together with one more thing about the SAME
groups — their prices, their full membership, whatever the caller needs — in
one round of reads. A page hydrating many packages would otherwise pay a pair
of reads per package and eat the request's subrequest budget. activeOnly
has the meaning getListingsByGroupIds gives it, and is spelled out at
every call site — whether inactive members count is the caller's decision,
never a default.
Promise<{ members: Map<number, ListingWithCount[]>; more: Extra; }>