> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Use Cases ## Article: Use Cases ## Article Link: https://dev.wix.com/docs/api-reference/crm/members-contacts/members/activity/members-followers/use-cases.md ## Article Content: # Members Followers: Sample Use Cases and Flows This article presents possible use cases and corresponding sample flows that you can support. This can be a helpful jumping off point as you plan your implementation. ### Create a “Most popular members” widget for a forum You could help Wix users add a widget that displays members with the most followers. 1. Retrieve all members of a site by calling [List Members](https://dev.wix.com/docs/rest/crm/members-contacts/members/members/list-members.md). 2. For each member, retrieve their followers with [List Member Followers](https://dev.wix.com/docs/rest/crm/members-contacts/members/members-followers/list-member-followers.md), count them, and sort the results by the highest number of followers. ### Create a “People you may know” widget based on 2nd-degree connections You could help Wix users add a widget showing connections of connections, and how many connections the specified member has in common with them. 1. Get the specified member's connections with [List Member Followers](https://dev.wix.com/docs/rest/crm/members-contacts/members/members-followers/list-member-followers.md) and [List Member Following](https://dev.wix.com/docs/rest/crm/members-contacts/members/members-followers/list-member-following.md). 2. For each direct connection, get _their_ connections in both directions, using the same methods as in the previous step. 3. Use the list of indirect connections from the previous step, query any existing relationships to the specified member with the [Query Member Connections](https://dev.wix.com/docs/rest/crm/members-contacts/members/members-followers/query-member-connections.md). 4. Sort the resulting list of potential connections into the following sets: - The specified member already follows the 2nd-degree connection. Remove them from the suggestion list. - The 2nd-degree connection follows the specified member. Add to a "follows you" sub-list. - There is not yet any direct connection to the 2nd-degree connection. These are the members to use for the suggestion list. 5. For each remaining suggestion, use [List Members](https://dev.wix.com/docs/rest/crm/members-contacts/members/members/list-members.md) to display details for the specified member, and provide "Follow this member" links with [Follow Member](https://dev.wix.com/docs/rest/crm/members-contacts/members/members-followers/follow-member.md) endpoint.