INPUT_OBJECT

ListItemInput

link GraphQL Schema definition

1input ListItemInput {
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 list item is clicked
15action: ListItemActionInput!
17}