AccountConnection
Last updated
Was this helpful?
No description
type AccountConnection {
edges: [AccountEdge!]
limit: Int
limitedCount: String
offset: Int
pageInfo: PageInfo!
total: Int
}[AccountEdge!] 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.
AccountConnectionResult union
Last updated
Was this helpful?
Was this helpful?