Sitecore Community GraphQL Cookbook

Get Redirects

GraphQL query to retrieve redirects in the redirects middleware
Source: JSS SDK
    JSS SDKDelivery API

JSON Variables


Query


JSON Response

1{
2  "data": {
3    "site": {
4      "siteInfo": {
5        "redirects": [
6          {
7            "pattern": "/not-existing-page/",
8            "target": "/about-us",
9            "redirectType": "REDIRECT_301",
10            "isQueryStringPreserved": false,
11            "locale": ""
12          }
13        ]
14      }
15    }
16  }
17}