---
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
metadata:
  effectiveApiVersion: 2025-07
  affectedApi:
    - displayName: Admin GraphQL API
      handle: admin-graphql
  primaryTag:
    displayName: API
    handle: api
  secondaryTag:
    displayName: Update
    handle: update
  indicatesActionRequired: false
  createdAt: '2025-05-07T16:23:59-04:00'
  postedAt: '2025-05-21T12:00:00-04:00'
  updatedAt: '2025-05-20T18:50:09-04:00'
  effectiveAt: '2025-05-23T12:00:00-04:00'
---

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
      }
    }
  }
}
```
