UserConnection
Last updated
Was this helpful?
The connection type for paginated lists of User.
type UserConnection {
edges: [UserEdge!]
limit: Int
limitedCount: String
offset: Int
pageInfo: PageInfo!
total: Int
}[UserEdge!] list objectThe list of edges containing the actual queried items.
Int scalarThe limit used for the query. This can differ from the input limit due to restrictions or defaults.
String scalarThe limited count of the items.
Int scalarThe offset that was used. This will only be filled in if possible (when cursors are sequential numbers).
PageInfo! non-null objectPagination information for the retrieved items.
Int scalarThe total count of the items. Preferably use limitedCount instead of total as this is not good for performance.
UserConnectionResult union
Last updated
Was this helpful?
Was this helpful?