Sanity App SDK
    Preparing search index...

    Variable loadMoreUsersConst Beta

    loadMoreUsers: BoundStoreAction<
        UsersStoreState,
        [options?: GetUsersOptions],
        Promise<{ data: SanityUser[]; hasMore: boolean; totalCount: number }>,
    > = ...

    Loads more users for a specific resource.

    This function triggers a request to fetch the next page of users for a given resource. It requires that users have already been loaded for the resource (via resolveUsers or getUsersState), and that there are more users available to load (as indicated by the hasMore property).

    The function returns a promise that resolves when the next page of users has been loaded.