INPUT_OBJECT

CreateDashboardViewMosaicLayoutInput

Input parameters for creating a new custom mosaic layout, such as for Stream Manager, Twitch Studio, etc. Requires at least the type and id to be specified.

link GraphQL Schema definition

1input CreateDashboardViewMosaicLayoutInput {
4
2# The channel for which to create a new Mosaic layout.
3channelID: ID!
7
5# The Mosaic data blob (in string form) representing the new Mosaic layout.
6data: MosaicData!
10
8# The display name of the new Mosaic layout.
9name: String!
14
11# The type of Mosaic layout being modified, such as for Twitch Studio,
12# Stream Manager, etc.
13type: ChannelDashboardViewType!
17
15# The version tag for a Mosaic layout, which can be used for deprecation.
16version: String!
18}