Tags:
- Admin GraphQL API
- 2025-07
Filter articles by title
We've added a 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
}
}
}
}
{
articles(query: "title:about us", first: 10) {
edges {
node {
id
title
}
}
}
}Was this section helpful?