OBJECT
SizeLocalization
link GraphQL Schema definition
1 type SizeLocalization { 2 : Int! 3 4 : String! 5 6 : String! 7 8 : String 9 10 # Arguments 11 # format: ISO-8601 12 (: String = "Y-m-d\\TH:i:sP"): DateTimeTz! 13 14 : Status! 15 16 # Required permission: none 17 # 18 # All elements are always returned 19 : [Country!]! 20 21 # Required permission: none 22 # 23 # All elements are always returned 24 : [SizeChart!]! 25 26 # Required permission: none 27 # 28 # All elements are always returned 29 # 30 # Store restrictions apply. 31 : [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) 41 (: LocalizedSizeFilter, : Int = 20, : Int = 1): [LocalizedSize!]! 42 43 }