OBJECT

ExtensionCategory

An extension category.

link GraphQL Schema definition

1type ExtensionCategory {
2
3# Description for what kind of extensions this category represents.
4description: String!
5
6# The paginated list of extensions in the category.
7extensions(first: Int, after: Cursor): ExtensionConnection
8
9# The category ID which is uniquely generated.
10id: ID!
11
12# Boolean value representing whether a category has been deleted.
13isDeleted: Boolean!
14
15# Denotes that no updates can be made to the category and no extensions can be
16# added to it.
17isReadOnly: Boolean!
18
19# Boolean value representing whether this category should be hidden from listings.
20isVisible: Boolean!
21
22# Human readable name for the Category.
23name: String!
24
25# Display order for this category. Categories are returned in ascending order.
26order: 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.
31slug: ID
32
33# Enumerated value specifying how this category's content should be ordered.
34# Popularity, manual, etc.
35sortKey: ExtensionCategorySortKey!
36
37# Category Type which can be curated or developer.
38type: ExtensionCategoryType!
39
40}