AccountConnection
Implements the Relay Connection interface, used to paginate lists of elements. (Learn More)
type AccountConnection implements Connection {
totalCount: Int!
pageInfo: PageInfo!
edges: [AccountEdge!]!
}
Fields
AccountConnection.totalCount ● Int! non-null scalar
Total number of element in the list
AccountConnection.pageInfo ● PageInfo! non-null object
Information about the current, the previous and the next page
AccountConnection.edges ● [AccountEdge!]! non-null object
AccountEdge list
Interfaces
Connection interface
Relay Connection type, used to paginate list of element (Learn More)
Returned By
accounts query
Member Of
AccountHolder object