Sitecore Community GraphQL Cookbook
JSON Variables
Query
JSON Response
1{
2 "data": {
3 "item": {
4 "imageWithJsonValue": {
5 "jsonValue": {
6 "value": {
7 "src": "https://edge.sitecorecloud.io/<yourtenant>/media/Project/webhook/graphql-demo/demo-image.jpg?h=4000&iar=0&w=6000",
8 "alt": "alt text",
9 "width": "6000",
10 "height": "4000"
11 }
12 }
13 },
14 "imageRawValue": {
15 "value": "<image mediaid=\"{ 6330C782-CCE6-4A2D-88CA-1C1235E494D4 }\" />"
16 },
17 "imageTyped": {
18 "alt": "alt text",
19 "description": "",
20 "extension": "jpg",
21 "height": 4000,
22 "width": 6000,
23 "src": "https://edge.sitecorecloud.io/<yourtenant>/media/Project/webhook/graphql-demo/demo-image.jpg",
24 "name": "Image",
25 "mimeType": "image/jpeg",
26 "size": 2370476
27 }
28 }
29 }
30}