OBJECT

Market

link GraphQL Schema definition

1type Market {
2id: Int!
3
4name: String!
5
6# Required permission: Market.comment:read
7comment: String
8
9# Arguments
10# format: ISO-8601
11updatedAt(format: String = "Y-m-d\\TH:i:sP"): DateTimeTz!
12
13# Required permission: AllocationRule:read
14allocationRule: AllocationRule
15
16# Required permission: Country:read
17#
18# Limit is optional
19#
20# Arguments
21# where: (self-explanatory)
22# sort: (self-explanatory)
23# limit: (self-explanatory)
24# page: (self-explanatory)
25assignedToCountries(where: CountryFilter, sort: [CountrySort!] = [name_ASC], limit: Int, page: Int): [Country!]!
26
27# Required permission: Campaign:read
28#
29# Limit must be in range 1 - 200
30#
31# Store restrictions apply.
32#
33# Arguments
34# where: (self-explanatory)
35# sort: (self-explanatory)
36# limit: (self-explanatory)
37# page: (self-explanatory)
38campaigns(where: CampaignFilter, sort: [CampaignSort!] = [id_DESC], limit: Int = 20, page: Int = 1): [Campaign!]!
39
40# Required permission: Store:read
41#
42# Store restrictions apply.
43store: Store!
44
45# Required permission: Display:read
46#
47# Limit must be in range 1 - 100
48#
49# Store restrictions apply.
50#
51# Arguments
52# where: (self-explanatory)
53# sort: (self-explanatory)
54# limit: (self-explanatory)
55# page: (self-explanatory)
56displays(where: DisplayFilter, sort: [DisplaySort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Display!]!
57
58}