feat(modules-sdk): Parse filters based on loaded modules graph (#9158)
This commit is contained in:
@@ -46,6 +46,7 @@ export const ProductVariantPriceSet: ModuleJoinerConfig = {
|
||||
prices: {
|
||||
path: "price_set_link.price_set.prices",
|
||||
isList: true,
|
||||
forwardArgumentsOnPath: ["price_set_link.price_set"],
|
||||
},
|
||||
calculated_price: {
|
||||
path: "price_set_link.price_set.calculated_price",
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
export const schema = `
|
||||
type PriceSet {
|
||||
id: ID!
|
||||
prices: [MoneyAmount]
|
||||
prices: [Price]
|
||||
calculated_price: CalculatedPriceSet
|
||||
}
|
||||
|
||||
type MoneyAmount {
|
||||
type Price {
|
||||
id: ID!
|
||||
currency_code: String
|
||||
amount: Float
|
||||
|
||||
Reference in New Issue
Block a user