INTERFACE

ChannelDashboardLayout

Data about a single configured Mosaic layout. This layout specifies a configuration of panel dimensions and positions in a grid, as defined by the Mosaic algorithm.

link GraphQL Schema definition

1interface ChannelDashboardLayout {
2
3# A unique identifier to uniquely reference this layout.
4id: ID!
5
6# The display name for the layout shown to the user.
7name: String!
8
9# A version to identify how the layout was generated,
10# such as for deprecation purposes.
11version: String!
12
13# When the layout was last updated
14lastUpdated: Time
15
16}