OBJECT

SizeLocalization

link GraphQL Schema definition

1type SizeLocalization {
2id: Int!
3
4name: String!
5
6displayName: String!
7
8comment: String
9
10# Arguments
11# format: ISO-8601
12updatedAt(format: String = "Y-m-d\\TH:i:sP"): DateTimeTz!
13
14status: Status!
15
16# Required permission: none
17#
18# All elements are always returned
19countries: [Country!]!
20
21# Required permission: none
22#
23# All elements are always returned
24sizeCharts: [SizeChart!]!
25
26# Required permission: none
27#
28# All elements are always returned
29#
30# Store restrictions apply.
31stores: [Store!]!
32
33# Required permission: none
34#
35# Limit must be in range 1 - 200
36#
37# Arguments
38# where: (self-explanatory)
39# limit: (self-explanatory)
40# page: (self-explanatory)
41localizedSizes(where: LocalizedSizeFilter, limit: Int = 20, page: Int = 1): [LocalizedSize!]!
42
43}