I have an appery.io database with three collections - Users, Group, GroupMember. A group can be active or inactive (active = true or false). A groupmember record has a group and a member (points to users) attribute. I want to retrieve and list for the logged in user all members of the active group to which the logged in user belongs. How can I achieve this? I assume I need to use one or more query services but I’m struggling with the where clause. I could do this easily with SQL but I’m not as familiar with NoSQL dbs. I have read the docs on database queries and in particular the section on pointers, but the penny hasn’t quite dropped for me unfortunately.