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 5 # Pricelist 6 MonetaryValue : 7 8 # Only applicable to WHOLESALE pricelists, otherwise always null 9 MonetaryValue : 10 11 # Required permission: none 12 # 13 # Store restrictions apply. 14 Pricelist! : 15 16 # Required permission: none 17 Product! : 18 19 # Required permission: none 20 ProductVariant! : 21 22 }