--- title: Filter articles by title - Shopify developer changelog description: Shopify’s developer changelog documents all changes to Shopify’s platform. Find the latest news and learn about new platform opportunities. source_url: html: https://shopify.dev/changelog/add-support-for-title-filtering-with-articles md: https://shopify.dev/changelog/add-support-for-title-filtering-with-articles.md --- [Back to Developer changelog](https://shopify.dev/changelog) May 21, 2025 Tags: * Admin GraphQL API * 2025-07 # Filter articles by title We've added a [`title`](https://shopify.dev/docs/api/admin-graphql/2025-07/queries/articles#argument-query-filter-title) filter to the `articles` query, allowing you to fetch a list of articles by their `title`. ``` { articles(query: "title:about us", first: 10) { edges { node { id title } } } } ```