# articles - storefront - QUERY
Version: 2025-01

## Description
List of the shop's articles.

### Access Scopes



## Arguments
* [after](/docs/api/storefront/2025-01/scalars/String): String - Returns the elements that come after the specified cursor.
* [before](/docs/api/storefront/2025-01/scalars/String): String - Returns the elements that come before the specified cursor.
* [first](/docs/api/storefront/2025-01/scalars/Int): Int - Returns up to the first `n` elements from the list.
* [last](/docs/api/storefront/2025-01/scalars/Int): Int - Returns up to the last `n` elements from the list.
* [query](/docs/api/storefront/2025-01/scalars/String): String - Apply one or multiple filters to the query.
| name | description | acceptable_values | default_value | example_use |
| ---- | ---- | ---- | ---- | ---- |
| author |
| blog_title |
| created_at |
| tag |
| tag_not |
| updated_at |
Refer to the detailed [search syntax](https://shopify.dev/api/usage/search-syntax) for more information about using filters.

* [reverse](/docs/api/storefront/2025-01/scalars/Boolean): Boolean - Reverse the order of the underlying list.
* [sortKey](/docs/api/storefront/2025-01/enums/ArticleSortKeys): ArticleSortKeys - Sort the underlying list by the given key.


## Returns
* [edges](/docs/api/storefront/2025-01/objects/ArticleEdge): ArticleEdge! A list of edges.
* [nodes](/docs/api/storefront/2025-01/objects/Article): Article! A list of the nodes contained in ArticleEdge.
* [pageInfo](/docs/api/storefront/2025-01/objects/PageInfo): PageInfo! Information to aid in pagination.


## Examples