--- title: urlRedirectsCount - GraphQL Admin description: Count of redirects. Limited to a maximum of 10000 by default. api_version: 2025-07 api_name: admin type: query api_type: graphql source_url: html: 'https://shopify.dev/docs/api/admin-graphql/2025-07/queries/urlRedirectsCount' md: >- https://shopify.dev/docs/api/admin-graphql/2025-07/queries/urlRedirectsCount.md --- # url​Redirects​Count query Requires `read_online_store_navigation` access scope. Count of redirects. Limited to a maximum of 10000 by default. ## Arguments * limit [Int](https://shopify.dev/docs/api/admin-graphql/2025-07/scalars/Int) Default:10000 The upper bound on count value before returning a result. Use `null` to have no limit. * query [String](https://shopify.dev/docs/api/admin-graphql/2025-07/scalars/String) A filter made up of terms, connectives, modifiers, and comparators. You can apply one or more filters to a query. Learn more about [Shopify API search syntax](https://shopify.dev/api/usage/search-syntax). * * default string * created\_at time - Filter by a case-insensitive search of multiple fields in a document. - Example: * `query=Bob Norman` * `query=title:green hoodie` * * id id * path string - Filter by `id` range. - Example: * `id:1234` * `id:>=1234` * `id:<=1234` * target string * saved​Search​Id [ID](https://shopify.dev/docs/api/admin-graphql/2025-07/scalars/ID) The ID of an existing saved search. The search’s query string is used as the query argument. Refer to the [`SavedSearch`](https://shopify.dev/api/admin-graphql/latest/objects/savedsearch) object. *** ## Possible returns * Count [Count](https://shopify.dev/docs/api/admin-graphql/2025-07/objects/Count) Details for count of elements. *** ## Examples * ### Retrieves a count of URL redirects #### Query ```graphql query RedirectCount { urlRedirectsCount { count precision } } ``` #### cURL ```bash curl -X POST \ https://your-development-store.myshopify.com/admin/api/2025-07/graphql.json \ -H 'Content-Type: application/json' \ -H 'X-Shopify-Access-Token: {access_token}' \ -d '{ "query": "query RedirectCount { urlRedirectsCount { count precision } }" }' ``` #### React Router ```javascript import { authenticate } from "../shopify.server"; export const loader = async ({request}) => { const { admin } = await authenticate.admin(request); const response = await admin.graphql( `#graphql query RedirectCount { urlRedirectsCount { count precision } }`, ); const json = await response.json(); return json.data; } ``` #### Ruby ```ruby session = ShopifyAPI::Auth::Session.new( shop: "your-development-store.myshopify.com", access_token: access_token ) client = ShopifyAPI::Clients::Graphql::Admin.new( session: session ) query = <<~QUERY query RedirectCount { urlRedirectsCount { count precision } } QUERY response = client.query(query: query) ``` #### Node.js ```javascript const client = new shopify.clients.Graphql({session}); const data = await client.query({ data: `query RedirectCount { urlRedirectsCount { count precision } }`, }); ``` #### Response ```json { "urlRedirectsCount": { "count": 5, "precision": "EXACT" } } ``` ## Retrieves a count of URL redirects [Open in GraphiQL](http://localhost:3457/graphiql?query=query%20RedirectCount%20%7B%0A%20%20urlRedirectsCount%20%7B%0A%20%20%20%20count%0A%20%20%20%20precision%0A%20%20%7D%0A%7D) ```javascript import { authenticate } from "../shopify.server"; export const loader = async ({request}) => { const { admin } = await authenticate.admin(request); const response = await admin.graphql( `#graphql query RedirectCount { urlRedirectsCount { count precision } }`, ); const json = await response.json(); return json.data; } ``` ##### GQL ``` query RedirectCount { urlRedirectsCount { count precision } } ``` ##### cURL ``` curl -X POST \ https://your-development-store.myshopify.com/admin/api/2025-07/graphql.json \ -H 'Content-Type: application/json' \ -H 'X-Shopify-Access-Token: {access_token}' \ -d '{ "query": "query RedirectCount { urlRedirectsCount { count precision } }" }' ``` ##### React Router ``` import { authenticate } from "../shopify.server"; export const loader = async ({request}) => { const { admin } = await authenticate.admin(request); const response = await admin.graphql( `#graphql query RedirectCount { urlRedirectsCount { count precision } }`, ); const json = await response.json(); return json.data; } ``` ##### Node.js ``` const client = new shopify.clients.Graphql({session}); const data = await client.query({ data: `query RedirectCount { urlRedirectsCount { count precision } }`, }); ``` ##### Ruby ``` session = ShopifyAPI::Auth::Session.new( shop: "your-development-store.myshopify.com", access_token: access_token ) client = ShopifyAPI::Clients::Graphql::Admin.new( session: session ) query = <<~QUERY query RedirectCount { urlRedirectsCount { count precision } } QUERY response = client.query(query: query) ``` ## Response JSON ```json { "urlRedirectsCount": { "count": 5, "precision": "EXACT" } } ```