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