OBJECT
Price
link GraphQL Schema definition
1 type Price { 2 Int! : 3 4 # May return null if a ProductVariant or Bundle doesn't have price set for given Pricelist 5 MonetaryValue : 6 7 # Only applicable to WHOLESALE pricelists, otherwise always null 8 MonetaryValue : 9 10 # Required permission: none 11 # 12 # Store restrictions apply. 13 Pricelist! : 14 15 # Required permission: none 16 Product! : 17 18 # Required permission: none 19 ProductVariant! : 20 21 }