Alchemy.Client.get_member_list

You're seeing just the function get_member_list, go back to Alchemy.Client module for more information.
Link to this function

get_member_list(guild_id, options \\ [])

Specs

get_member_list(snowflake(), limit: Integer, after: snowflake()) ::
  {:ok, [Alchemy.Guild.member()]} | {:error, term()}

Gets a list of members from a guild.

Options

  • limit The number of members to fetch (max 1000).
  • after Setting this to a user id will only fetch members that joined after that person.

    Examples

    Client.get_member_list(guild_id, limit: 10)