Arguments
slug
String!Required
A short, human-readable, URL-friendly identifier of a slideshow. You can get slug value from the endpoint /service/application/content/v1.0/slideshow/.
Response
custom_json
JSONCustom JSON object for specific use cases.
id
StringUnique identifier of an entry.
active
BooleanDetails related to slideshow/screensaver.
application
StringApplication ID - Identifier for a Sales channel.
archived
BooleanWhether slideshow is deleted or not.
configuration
ConfigurationSchemaData related to slideshow/screensaver.
date_meta
DateMetaDetails related to resource creation and updation.
media
[SlideshowMedia]Details related to slideshow/screensaver.
platform
StringDetails related to slideshow/screensaver.
slug
StringDetails related to slideshow/screensaver.
Query
1query slideshow($slug: String!) {2 slideshow(slug: $slug) {3 custom_json4 id5 active6 application7 archived8 configuration {9 duration10 sleep_time11 slide_direction12 start_on_launch13 }14 date_meta {15 created_on16 modified_on17 }18 media {19 auto_decide_duration20 bg_color21 duration22 type23 url24 }25 platform26 slug27 }28}
Try it
Input Variables
1{2 "slug": "slug"3}
Response
1{2 "slideshow": {3 "custom_json": {},4 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",5 "active": true,6 "application": "application",7 "archived": true,8 "configuration": {9 "duration": 42,10 "sleep_time": 42,11 "slide_direction": "slide_direction",12 "start_on_launch": true13 },14 "date_meta": {15 "created_on": "created_on",16 "modified_on": "modified_on"17 },18 "media": [19 {20 "auto_decide_duration": true,21 "bg_color": "bg_color",22 "duration": 42,23 "type": "type",24 "url": "https://website.com"25 }26 ],27 "platform": "platform",28 "slug": "slug"29 }30}
Was this section helpful?