OBJECT

MoneyAccountsConnection

A connection to a list of MoneyAccount values.

link GraphQL Schema definition

  • type MoneyAccountsConnection {
  • # A list of `MoneyAccount` objects.
  • nodes: [MoneyAccount!]!
  • # A list of edges which contains the `MoneyAccount` and cursor to aid in
  • # pagination.
  • edges: [MoneyAccountsEdge!]!
  • # Information to aid in pagination.
  • pageInfo: PageInfo!
  • # The count of *all* `MoneyAccount` you could get from the connection.
  • totalCount: Int!
  • }