Version: 2025-01
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2025-01/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query UrlRedirects { urlRedirects(first: 100) { edges { node { id path target } } } }\"\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: `query UrlRedirects {\n urlRedirects(first: 100) {\n edges {\n node {\n id\n path\n target\n }\n }\n }\n }`,\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n query UrlRedirects {\n urlRedirects(first: 100) {\n edges {\n node {\n id\n path\n target\n }\n }\n }\n }\nQUERY\n\nresponse = client.query(query: query)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<<QUERY\n query UrlRedirects {\n urlRedirects(first: 100) {\n edges {\n node {\n id\n path\n target\n }\n }\n }\n }\nQUERY;\n\n$response = $client->query([\"query\" => $query]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query UrlRedirects {\n urlRedirects(first: 100) {\n edges {\n node {\n id\n path\n target\n }\n }\n }\n }`,\n);\n\nconst data = await response.json();\n" Graphql query: "query UrlRedirects {\n urlRedirects(first: 100) {\n edges {\n node {\n id\n path\n target\n }\n }\n }\n}"
input: null
response: { "data": { "urlRedirects": { "edges": [ { "node": { "id": "gid://shopify/UrlRedirect/510765931", "path": "/page%20with%20many%20spaces", "target": "/products/element" } }, { "node": { "id": "gid://shopify/UrlRedirect/891487173", "path": "/about-us", "target": "/pages/aboutus" } }, { "node": { "id": "gid://shopify/UrlRedirect/905192165", "path": "/about", "target": "/pages/aboutus" } }, { "node": { "id": "gid://shopify/UrlRedirect/979034143", "path": "/2008/01/01/look-at-my-cool-new-snowboard", "target": "/products/draft" } }, { "node": { "id": "gid://shopify/UrlRedirect/984542198", "path": "/aboutus", "target": "/pages/aboutus" } } ] } } }