Layout
Layout
The layout information, number of zones, css for zone layout but not content related.
| Field | Argument | Type | Description |
|---|---|---|---|
| nodeId | ID! | A globally unique identifier. Can be used in various places throughout the system to identify this single value. | |
| id | UUID! | The uuid of the layout. | |
| orgId | UUID! | The uuid of the organization that layout belong to. | |
| spaceId | UUID! | ||
| name | String! | The name of the layout. | |
| width | Int | The width dimension of the layout. | |
| height | Int | The height dimension of the layout. | |
| isFlexible | Boolean | Layout is responsive to any size. | |
| isScalable | Boolean | Layout is able to scale to the Channel with the same aspect ratio. | |
| zones | Int! | The number of zones of the layout (not include hidden zone). | |
| config | JSON | The configuration data of the layout - css. | |
| createdAt | Datetime | ||
| updatedAt | Datetime | ||
| createdBy | UUID | ||
| updatedBy | UUID | ||
| fullScreenZoneId | String | ||
| orgByOrgId | Org | Reads a single `Org` that is related to this `Layout`. | |
| spaceBySpaceId | Space | Reads a single `Space` that is related to this `Layout`. | |
| userByCreatedBy | User | Reads a single `User` that is related to this `Layout`. | |
| userByUpdatedBy | User | Reads a single `User` that is related to this `Layout`. | |
| channelsByLayout | ChannelsConnection! | Reads and enables pagination through a set of `Channel`. | |
| first | Int | Only read the first `n` values of the set. | |
| last | Int | Only read the last `n` values of the set. | |
| offset | Int | Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. | |
| before | Cursor | Read all values in the set before (above) this cursor. | |
| after | Cursor | Read all values in the set after (below) this cursor. | |