OBJECT
ExtensionCategory
An extension category.
link GraphQL Schema definition
1 type ExtensionCategory { 2 3 # Description for what kind of extensions this category represents. 4 : String! 5 6 # The paginated list of extensions in the category. 7 (: Int, : Cursor): ExtensionConnection 8 9 # The category ID which is uniquely generated. 10 : ID! 11 12 # Boolean value representing whether a category has been deleted. 13 : Boolean! 14 15 # Denotes that no updates can be made to the category and no extensions can be 16 # added to it. 17 : Boolean! 18 19 # Boolean value representing whether this category should be hidden from listings. 20 : Boolean! 21 22 # Human readable name for the Category. 23 : String! 24 25 # Display order for this category. Categories are returned in ascending order. 26 : Float! 27 28 # The URL-safe slug for the category. This slug may be used as the identifier to 29 # retrieve 30 # categories from the root Query. 31 : ID 32 33 # Enumerated value specifying how this category's content should be ordered. 34 # Popularity, manual, etc. 35 : ExtensionCategorySortKey! 36 37 # Category Type which can be curated or developer. 38 : ExtensionCategoryType! 39 40 }