INPUT_OBJECT

CreatePanelInput

CreatePanelInput contains a panel with created data The schema here has arguments for both extension panels and default panels each panel needs a PanelType, and channelID it corresponds to, but each panel does not need the other arguments extension panels can have a slotID default panels can have a title, image, link, and/or description.

link GraphQL Schema definition

1input CreatePanelInput {
3
2channelID: ID!
5
4description: String
7
6imageURL: String
9
8linkURL: String
11
10slotID: String
13
12title: String
15
14type: PanelType!
16}