OBJECT

BrickAndMortar

link GraphQL Schema definition

1type BrickAndMortar {
2id: Int!
3
4name: String!
5
6displayName: String!
7
8status: Status!
9
10type: BrickAndMortarType!
11
12address: String!
13
14latitude: String!
15
16longitude: String!
17
18website: String
19
20email: String
21
22phoneNumber: String
23
24# Required permission: AllocationRule:read
25allocationRule: AllocationRule
26
27# Required permission: Store:read
28#
29# Limit is optional
30#
31# Store restrictions apply.
32#
33# Arguments
34# where: (self-explanatory)
35# sort: (self-explanatory)
36# limit: (self-explanatory)
37# page: (self-explanatory)
38assignedStores(where: StoreFilter, sort: [StoreSort!] = [id_ASC], limit: Int, page: Int): [Store!]!
39
40# Required permission: none
41country: Country
42
43# Required permission: none
44#
45# All elements are always returned
46openingDays: [OpeningDay!]!
47
48# Required permission: none
49state: CountryState
50
51# Required permission: Warehouse:read
52warehouse: Warehouse
53
54}