What: - Creates a new currency module - Removes currency model from the pricing module - Removes currency model from region module
17 lines
232 B
TypeScript
17 lines
232 B
TypeScript
export const schema = `
|
|
type PriceSet {
|
|
id: String!
|
|
money_amounts: [MoneyAmount]
|
|
}
|
|
|
|
type MoneyAmount {
|
|
id: String!
|
|
currency_code: String
|
|
amount: Float
|
|
min_quantity: Float
|
|
max_quantity: Float
|
|
}
|
|
`
|
|
|
|
export default schema
|