OBJECT

BankAccountsConnection

A connection to a list of BankAccount values.

link GraphQL Schema definition

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