OBJECT

CreditCardAccountsConnection

A connection to a list of CreditCardAccount values.

link GraphQL Schema definition

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