query

slideshow

Get a slideshow using its `slug`.
Arguments
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
JSON
Custom JSON object for specific use cases.
Unique identifier of an entry.
active
Boolean
Details related to slideshow/screensaver.
application
String
Application ID - Identifier for a Sales channel.
archived
Boolean
Whether slideshow is deleted or not.
configuration
ConfigurationSchema
Data related to slideshow/screensaver.
date_meta
DateMeta
Details related to resource creation and updation.
Details related to slideshow/screensaver.
platform
String
Details related to slideshow/screensaver.
slug
String
Details related to slideshow/screensaver.
Query
1query slideshow($slug: String!) {
2 slideshow(slug: $slug) {
3 custom_json
4 id
5 active
6 application
7 archived
8 configuration {
9 duration
10 sleep_time
11 slide_direction
12 start_on_launch
13 }
14 date_meta {
15 created_on
16 modified_on
17 }
18 media {
19 auto_decide_duration
20 bg_color
21 duration
22 type
23 url
24 }
25 platform
26 slug
27 }
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": true
13 },
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}