OBJECT

Media

Media type for displaying content

link GraphQL Schema definition

1type Media {
2
3# Default image asset, for mobile and higher.
4defaultMedia: MediaAsset!
5
6# Tablet specific image asset.
7tablet: MediaAsset
8
9# Desktop specific image asset.
10desktop: MediaAsset
11
12# Text describing the asset in a marketing context.
13description: String
14
15# Text describing the asset.
16alt: String
17
18# Default image to render while a video is loading
19videoPlaceholderImage: MediaAsset
20
21}