---
title: Retrieve Multiple Stories from a Folder
description: Learn how to retrieve multiple stories from a specific folder using Storyblok's GraphQL API.
url: https://storyblok.com/docs/api/graphql/examples/retrieve-multiple-stories-from-a-folder
---

# Retrieve Multiple Stories from a Folder

To retrieve stories from a particular folder, use the `starts_with` parameter.

```graphql
query {
 PageItems(starts_with: "articles") {
   items {
     content {
       _editable
       _uid
       body
       component
     }
   }
 }
}
```

To retrieve specific stories, you can use other filters, such as `first_published_at_lt` , `excluding_slugs`, and so on. These are the same filters available for the equivalent REST API endpoint. For an overview of available parameters, please refer to the [Content Delivery API documentation](/docs/api/content-delivery/v2/stories/retrieve-multiple-stories).

> [!WARNING]
> Note that the `cached_url` property in the link field is `camelCased` rather than `snake_cased` in the GraphQL API.

## Pagination

-   [Previous: Retrieve Multiple Stories](/docs/api/graphql/examples/retrieve-multiple-stories)
-   [Next: Resolve Relations](/docs/api/graphql/examples/resolve-relations)
