The Sitecore Authoring and Management GraphQL API is a part of Sitecore's Headless Services, providing a modern, flexible way to interact with Sitecore content. It allows developers to query, create, update, and delete content items using GraphQL queries and mutations. The API is designed to facilitate content management operations, enabling developers to integrate Sitecore content seamlessly into custom front-end applications, headless CMS setups, or other systems. This guide provides instructions on enabling and authoring requests to the API in local Docker environment.
Enable the GraphQL IDE
Before using the GraphQL IDE, you must enable it in your settings. With the convenience of the Docker environment variables and config files in the Sitecore docker image, you can easily enable it by changing the value of the environment variables.
In the Docker compose file, add the following environment variables to cm service:
XM or XP
cm: ... environment: ... Sitecore_GraphQL_Enabled: "true" Sitecore_GraphQL_ExposePlayground: "true" ...
XM Cloud
cm: ... environment: ... Sitecore_GraphQL_ExposePlayground: "true" ...
Obtain an access token
To authorize the GraphQL IDE or HTTP requests to perform operations against the Authoring and Management API endpoint, you must obtain an access token.
To obtain an access token, run the following CLI login command and follow the prompts:
XM or XP
dotnet sitecore login
XM Cloud
dotnet sitecore cloud login
When logged in, the process stores an access token that you can use to set the necessary Authorization header for the GraphQL IDE and HTTP requests. To retrieve the token, open the ./sitecore/user.json file, copy the value of the accessToken property, and save it for later use.
Authorize the GraphQL IDE
Before performing queries and mutations in the GraphQL IDE, you must authorize the IDE to perform operations.
To authorize the GraphQL IDE, open the IDE in the browser at the following url:
XM or XP
https://<CM_HOST>/sitecore/api/authoring/graphql/ide/
XM Cloud
https://xmcloudcm.localhost/sitecore/api/authoring/graphql/ide/
In the IDE's lower-left pane, the HTTP Headers tab, add the authorization header with the following format:
{ "Authorization": "Bearer <accessToken>" }
Now, you can run the query for authoring and management operations.
Happy coding!