Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 377 Bytes

currencies.adoc

File metadata and controls

29 lines (24 loc) · 377 Bytes

Currencies

Query that will return available currencies with the current value to USD. This could be used to get exchange rate

query {
  currencies{
    # [Currency]
  }
}

Example

offeringSearchForCourseOfferingsQuery.gql
query getCurrencies{
  currencies{
    currencyId
    code
    symbol
    oneUsd
    modified
  }
}