OBJECT

CurrencyRate

A CurrencyRate is a rate of currency conversion on a given date.

link GraphQL Schema definition

  • type CurrencyRate implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • date: Date!
  • currency: CurrencyCode!
  • rate: Float!
  • createdAt: CreatedTime
  • }