Sitecore Community GraphQL Cookbook
JSON Variables
Query
JSON Response
1{
2 "data": {
3 "item": {
4 "nameValueWithJsonValue": {
5 "jsonValue": {
6 "value": "old=new&old2=new2"
7 }
8 },
9 "nameValueRawValue": {
10 "value": "old=new&old2=new2"
11 },
12 "nameValueTyped": {
13 "name": "Mapping",
14 "value": "old=new&old2=new2",
15 "values": [
16 {
17 "name": "old",
18 "value": "new"
19 },
20 {
21 "name": "old2",
22 "value": "new2"
23 }
24 ]
25 }
26 }
27 }
28}