OBJECT

FeaturedItem

link GraphQL Schema definition

1type FeaturedItem {
2
3# The featured item's content.
4content: FeaturedItemContent
5
6# An markdown description of the item, available when a item is featured.
7description: String!
8
9# ID used for tracking interactions.
10id: ID!
11
12# A URL for a special thumbnail image, when this item is featured.
13imageURL: String!
14
15# Is this item featured because it is scheduled?
16isScheduled: Boolean!
17
18# Is this item featured because it is sponsored?
19isSponsored: Boolean!
20
21# A lower priority level means the item is higher priority.
22priorityLevel: Int!
23
24# When featured, the title of the item.
25title: String!
26
27}