Storyblok
Search Storyblok's Documentation
  1. Retrieve a Single Story

Retrieve a Single Story

Use the Pascal-cased version of a content type name and provide an id as filter attribute. The id can be the iduuid, or full_slug of the story.

query {
  PageItem(id: "home") {
    name
    content {
       _uid
       component
    }
  }
}