OBJECT

UsersPage

Paginated list of users.

link GraphQL Schema definition

1type UsersPage {
2
3# A list of users.
4items: [User]!
5
6# Pagination metadata.
7pageInfo: PageInfo!
8
9}