OBJECT
Pricelist
link GraphQL Schema definition
1 type Pricelist { 2 Int! : 3 4 String! : 5 6 Status! : 7 8 # Required permission: Pricelist.comment:read 9 String : 10 11 Boolean! : 12 13 # Arguments 14 # format: ISO-8601 15 String = "Y-m-d\\TH:i:sP"): String! ( : 16 17 # Required permission: Country:read 18 # 19 # Limit is optional 20 # 21 # Arguments 22 # where: (self-explanatory) 23 # sort: (self-explanatory) 24 # limit: (self-explanatory) 25 # page: (self-explanatory) 26 ( 27 CountryFilter, : 28 CountrySort!] = [name_ASC], : [ 29 Int, : 30 Int : 31 ): [Country!]! 32 33 # Required permission: Campaign:read 34 # 35 # Limit is optional 36 # 37 # Store restrictions apply. 38 # 39 # Arguments 40 # where: (self-explanatory) 41 # sort: (self-explanatory) 42 # limit: (self-explanatory) 43 # page: (self-explanatory) 44 CampaignFilter, : [CampaignSort!] = [id_DESC], : Int, : Int): [Campaign!]! ( : 45 46 # Required permission: none 47 Currency! : 48 49 # Required permission: ShippingOption:read 50 # 51 # Store restrictions apply. 52 ShippingOption : 53 54 # Required permission: Store:read 55 # 56 # Store restrictions apply. 57 Store! : 58 59 # Required permission: Price:read 60 # 61 # Limit must be in range 1 - 200 62 # 63 # Store restrictions apply. 64 # 65 # Arguments 66 # where: (self-explanatory) 67 # sort: (self-explanatory) 68 # limit: (self-explanatory) 69 # page: (self-explanatory) 70 PriceFilter, : [PriceSort!] = [productId_ASC, productVariantId_ASC], : Int = 20, : Int = 1): [Price!]! ( : 71 72 }