OBJECT

CurrencyRatesConnection

A connection to a list of CurrencyRate values.

link GraphQL Schema definition

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