Skip to main content

usersConnection

Super admin only. Paginated user search across email, gamertag, disambiguation, and exact user_id. Relay cursor connection; prefer this over the offset-based usersPaginated.

usersConnection(
first: Int
after: String
query: String
): UsersConnection!

Arguments

usersConnection.first ● Int scalar

Return the first N edges after after. Default 50; clamped to 1..200.

usersConnection.after ● String scalar

Opaque cursor: return edges after this one. Pass a previous page's pageInfo.endCursor. Omit for the first page.

usersConnection.query ● String scalar

Optional search term. Case-insensitive prefix match over email, gamertag, and disambiguation, plus an exact match on user_id. Omit to list all users.

Type

UsersConnection object

A Relay cursor connection over User records. Page with first/after; pass pageInfo.endCursor back as after for the next page.