OBJECT
Campaign
link GraphQL Schema definition
1 type Campaign { 2 Int! : 3 4 String! : 5 6 # Arguments 7 # format: ISO-8601 8 String = "Y-m-d\\TH:i:sP"): String! ( : 9 10 # Arguments 11 # format: ISO-8601 12 String = "Y-m-d\\TH:i:sP"): String! ( : 13 14 Status! : 15 16 # Required permission: Campaign:read 17 # 18 # Limit must be in range 1 - 200 19 # 20 # Store restrictions apply. 21 # 22 # Arguments 23 # where: (self-explanatory) 24 # sort: (self-explanatory) 25 # limit: (self-explanatory) 26 # page: (self-explanatory) 27 ( 28 CampaignVariantFilter, : 29 CampaignVariantSort!] = [id_ASC], : [ 30 Int = 20, : 31 Int = 1 : 32 ): [CampaignVariant!]! 33 34 # Required permission: Market:read 35 # 36 # Limit is optional 37 # 38 # Store restrictions apply. 39 # 40 # Arguments 41 # where: (self-explanatory) 42 # sort: (self-explanatory) 43 # limit: (self-explanatory) 44 # page: (self-explanatory) 45 MarketFilter, : [MarketSort!] = [id_ASC], : Int, : Int): [Market!]! ( : 46 47 # Required permission: Pricelist:read 48 # 49 # Limit is optional 50 # 51 # Store restrictions apply. 52 # 53 # Arguments 54 # where: (self-explanatory) 55 # sort: (self-explanatory) 56 # limit: (self-explanatory) 57 # page: (self-explanatory) 58 ( 59 PricelistFilter, : 60 PricelistSort!] = [id_ASC], : [ 61 Int, : 62 Int : 63 ): [Pricelist!]! 64 65 # Required permission: DeliveryWindow:read 66 # 67 # Limit is optional 68 # 69 # Store restrictions apply. 70 # 71 # Arguments 72 # where: (self-explanatory) 73 # sort: (self-explanatory) 74 # limit: (self-explanatory) 75 # page: (self-explanatory) 76 ( 77 DeliveryWindowFilter, : 78 DeliveryWindowSort!] = [id_ASC], : [ 79 Int, : 80 Int : 81 ): [DeliveryWindow!]! 82 83 # Required permission: Store:read 84 # 85 # Store restrictions apply. 86 Store! : 87 88 }