INPUT_OBJECT
CreateOrUpdateCurrencyInput
link GraphQL Schema definition
- input CreateOrUpdateCurrencyInput {
- # Optional client-supplied identifier passed on a mutation input and echoed back
- # unchanged on its payload, so a client can correlate the response with its
- # request (Relay convention).
- : String
- # Unique identifier of entity.
- : ID
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Name of the entity and its default text representation.
- : String
- # Display symbol of the currency (e.g. "$", "€"). Used when formatting amounts in
- # the UI.
- : String
- # Revision when entity was lastly changed.
- : Int
- # Exchange rates configured for this currency, one per exchange rate list
- # (effective period).
- : [CreateCurrencyExchangeRateNoCurrencyBackrefInput!]
- }