Sitecore Community GraphQL Cookbook
JSON Variables
Query
JSON Response
1{
2 "data": {
3 "item": {
4 "checkboxWithJsonValue": {
5 "jsonValue": {
6 "value": true
7 }
8 },
9 "checkboxRawValue": {
10 "value": "1"
11 },
12 "checkboxTyped": {
13 "boolValue": true,
14 "name": "HideFromSearch",
15 "value": "1"
16 }
17 }
18 }
19}