OBJECT

AllocationRule

link GraphQL Schema definition

1type AllocationRule {
2id: Int!
3
4name: String!
5
6isActive: Boolean!
7
8# Required permission: AllocationRule:read
9activeAllocationRule: AllocationRule
10
11type: AllocationType!
12
13# Required permission: Account:read
14#
15# All elements are always returned
16#
17# Store restrictions apply.
18defaultInAccounts: [Account!]!
19
20# Required permission: DeliveryWindow:read
21#
22# All elements are always returned
23#
24# Store restrictions apply.
25defaultInDeliveryWindows: [DeliveryWindow!]!
26
27# Required permission: Market:read
28#
29# All elements are always returned
30#
31# Store restrictions apply.
32defaultInMarkets: [Market!]!
33
34# Required permission: Store:read
35#
36# All elements are always returned
37#
38# Store restrictions apply.
39defaultInStores: [Store!]!
40
41# Required permission: AllocationRule:read
42#
43# All elements are always returned
44geographyPriorities: [GeographyAllocationPrioritySet!]!
45
46}