A paginated profiles API response. The next field can be used to fetch the next page of results.

interface QueryProfilesResponse {
    next?: string;
    previous?: string;
    profiles: Profile[];
}

Properties

next?: string
previous?: string
profiles: Profile[]