• Look for a user like you would on the website!

    Parameters

    • this: API
    • query: string

      What you would put in the searchbar

    • page: number = 1

      You normally get the first 20 results, but if page is 2, you'd get results 21 to 40 instead for example! (defaults to 1)

    Returns Promise<{
        data: User[];
        total: number;
    }>