INPUT_OBJECT

PanelInput

link GraphQL Schema definition

1input PanelInput {
5
2# The headline text. It should not be an empty string and should contain at most
3# 100 characters
4heading: String!
9
6# The descriptive text. It should not be an empty string and should contain at
7# most 150 characters
8paragraph: String
13
10# The image URL. It should not be an empty string, should contain at most 2000
11# characters and should be a valid HTTP/HTTPS URL
12image_url: String
16
14# The action performed when the panel is clicked
15action: PanelActionInput
17}