OBJECT
MoneyAccountsConnection
A connection to a list of MoneyAccount values.
link GraphQL Schema definition
- type MoneyAccountsConnection {
- # A list of `MoneyAccount` objects.
- : [MoneyAccount!]!
- # A list of edges which contains the `MoneyAccount` and cursor to aid in
- # pagination.
- : [MoneyAccountsEdge!]!
- # Information to aid in pagination.
- : PageInfo!
- # The count of *all* `MoneyAccount` you could get from the connection.
- : Int!
- }