Sitecore Community GraphQL Cookbook

Fields - Date

GraphQL query to demonstrate different ways to retrieve Date/DateTime field from Experience Edge
Source:
    Delivery APICommunityFields

JSON Variables


Query


JSON Response

1{
2  "data": {
3    "item": {
4      "dateWithJsonValue": {
5        "jsonValue": {
6          "value": "2024-08-28T07:53:00Z"
7        }
8      },
9      "dateRawValue": {
10        "value": "20240828T075300Z"
11      },
12      "dateTyped": {
13        "dateValue": 1724831580000,
14        "formattedDateValue": "08/28/2024 07:53",
15        "value": "20240828T075300Z"
16      }
17    }
18  }
19}