---
title: Resolve Relations
description: Learn how to resolve relations in Storyblok's GraphQL API.
url: https://storyblok.com/docs/api/graphql/examples/resolve-relations
---

# Resolve Relations

You can use resolve relations for a specific story by using the `resolve_relations` parameter with the relation to be resolved as the value for the argument.

```graphql
query  {
 PageItem(id: "542305440", resolve_relations: "article.categories") {
   content {
     body
   }
 }
}
```

> [!TIP]
> Learn more about resolving relations in the [references concept](/docs/concepts/references).

## Pagination

-   [Previous: Retrieve Multiple Stories from a Folder](/docs/api/graphql/examples/retrieve-multiple-stories-from-a-folder)
-   [Next: Fetch Content in a Specific Language](/docs/api/graphql/examples/fetch-content-in-a-specific-language)
