OBJECT
Category
link GraphQL Schema definition
1 type Category implements Localizable { 2 Int! : 3 4 String! : 5 6 Status! : 7 8 Boolean! : 9 10 String! : 11 12 String! : 13 14 String : 15 16 String : 17 18 String : 19 20 # Required permission: Category:read 21 # 22 # Limit is optional 23 # 24 # Store restrictions apply. 25 # 26 # Arguments 27 # where: (self-explanatory) 28 # sort: (self-explanatory) 29 # limit: (self-explanatory) 30 # page: (self-explanatory) 31 ( 32 CategoryFilter, : 33 CategorySort!] = [customOrder_ASC], : [ 34 Int, : 35 Int : 36 ): [Category!]! 37 38 # Required permission: Display:read 39 # 40 # Limit must be in range 1 - 200 41 # 42 # Store restrictions apply. 43 # 44 # Arguments 45 # where: (self-explanatory) 46 # sort: (self-explanatory) 47 # first: (self-explanatory) 48 # after: (self-explanatory) 49 # last: (self-explanatory) 50 # before: (self-explanatory) 51 ( 52 DisplayFilter, : 53 DisplaySort!], : [ 54 Int, : 55 String, : 56 Int, : 57 String : 58 ): DisplayConnection! 59 60 # Required permission: Localization:read 61 # 62 # All elements are always returned 63 # 64 # Arguments 65 # where: (self-explanatory) 66 LocalizationFilter): [Localization!]! ( : 67 68 # Required permission: Category:read 69 # 70 # Store restrictions apply. 71 Category : 72 73 # Required permission: Store:read 74 # 75 # Store restrictions apply. 76 Store! : 77 78 }