Files
medusa-store/packages/pricing/src/schema/index.ts
Stevche Radevski dc025302a1 feat: Add currency module and remove currency models from region and pricing modules (#6536)
What:
- Creates a new currency module
- Removes currency model from the pricing module
- Removes currency model from region module
2024-02-29 15:09:59 +00:00

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