OBJECT

Store

link GraphQL Schema definition

1type Store {
2id: Int!
3
4name: String!
5
6type: StoreType!
7
8# Required permission: Affiliate:read
9#
10# Limit must be in range 1 - 200
11#
12# Store restrictions apply.
13#
14# Arguments
15# where: (self-explanatory)
16# sort: (self-explanatory)
17# limit: (self-explanatory)
18# page: (self-explanatory)
19affiliates(where: AffiliateFilter, sort: [AffiliateSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Affiliate!]!
20
21# Required permission: AllocationRule:read
22allocationRule: AllocationRule
23
24# Required permission: Brand:read
25#
26# Limit must be in range 1 - 200
27#
28# Store restrictions apply.
29#
30# Arguments
31# where: (self-explanatory)
32# sort: (self-explanatory)
33# limit: (self-explanatory)
34# page: (self-explanatory)
35brands(where: BrandFilter, sort: [BrandSort!] = [id_DESC], limit: Int = 20, page: Int = 1): [Brand!]!
36
37# Required permission: Campaign:read
38#
39# Limit must be in range 1 - 200
40#
41# Store restrictions apply.
42#
43# Arguments
44# where: (self-explanatory)
45# sort: (self-explanatory)
46# limit: (self-explanatory)
47# page: (self-explanatory)
48campaigns(where: CampaignFilter, sort: [CampaignSort!] = [id_DESC], limit: Int = 20, page: Int = 1): [Campaign!]!
49
50# Required permission: Category:read
51#
52# Limit must be in range 1 - 200
53#
54# Store restrictions apply.
55#
56# Arguments
57# where: (self-explanatory)
58# sort: (self-explanatory)
59# limit: (self-explanatory)
60# page: (self-explanatory)
61categories(where: CategoryFilter, sort: [CategorySort!] = [customOrder_ASC], limit: Int = 20, page: Int = 1): [Category!]!
62
63# Required permission: Market:read
64#
65# Store restrictions apply.
66defaultMarket: Market
67
68# Required permission: Pricelist:read
69#
70# Store restrictions apply.
71defaultPricelist: Pricelist
72
73# Required permission: TaxRule:read
74defaultTaxGroup: TaxGroup
75
76# Required permission: Market:read
77#
78# Limit is optional
79#
80# Store restrictions apply.
81#
82# Arguments
83# where: (self-explanatory)
84# sort: (self-explanatory)
85# limit: (self-explanatory)
86# page: (self-explanatory)
87markets(where: MarketFilter, sort: [MarketSort!] = [id_ASC], limit: Int, page: Int): [Market!]!
88
89# Required permission: Order:read
90#
91# Limit must be in range 1 - 100
92#
93# Store restrictions apply.
94#
95# Arguments
96# where: (self-explanatory)
97# sort: (self-explanatory)
98# limit: (self-explanatory)
99# page: (self-explanatory)
100orders(where: OrderFilter, sort: [OrderSort!] = [number_DESC], limit: Int = 20, page: Int = 1): [Order!]!
101
102# Required permission: StorePlugin:read
103#
104# All elements are always returned
105#
106# Store restrictions apply.
107plugins: [StorePlugin!]!
108
109# Required permission: Pricelist:read
110#
111# Limit must be in range 1 - 200
112#
113# Store restrictions apply.
114#
115# Arguments
116# where: (self-explanatory)
117# sort: (self-explanatory)
118# limit: (self-explanatory)
119# page: (self-explanatory)
120pricelists(where: PricelistFilter, sort: [PricelistSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Pricelist!]!
121
122# Required permission: ShippingOption:read
123#
124# All elements are always returned
125#
126# Store restrictions apply.
127shippingOptions: [ShippingOption!]!
128
129}