OBJECT

BankTransactionsConnection

A connection to a list of BankTransaction values.

link GraphQL Schema definition

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