Skip to content

Retrieve Multiple Stories from a Folder

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

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.