OBJECT

ExtensionCarouselEntry

An extension carousel entry.

link GraphQL Schema definition

1type ExtensionCarouselEntry {
2
3# URL the user is directed to when clicking the carousel entry.
4clickThroughURL: String!
5
6# Unique ID of the entry.
7id: ID!
8
9# URL of the image to display for the carousel entry.
10imageURL: String!
11
12# Text associated with the carousel entry.
13title: String!
14
15}