Sitecore Community GraphQL Cookbook

Fields - Checkbox

GraphQL query to demonstrate different ways to retrieve Checkbox field from Experience Edge
Source:
    Delivery APICommunityFields

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}