Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@elevantiq/storyblok-deep-relations-resolver

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@elevantiq/storyblok-deep-relations-resolver

Resolve relations more than 2 levels deep

latest
Source
npmnpm
Version
2.2.1
Version published
Maintainers
1
Created
Source

Elevantiq Logo

Storyblok Deep Relations Resolver

The Storyblok Deep Relations Resolver is a TypeScript library that resolves relations on more than 2 levels in Storyblok's API responses. It enables developers to easily access nested data from the API responses, making it easier to work with complex data structures.

PRs welcome! Follow @elevantiq

Installation

To install the package, run the following command:

npm install @elevantiq/storyblok-deep-relations-resolver

# or with yarn

yarn add @elevantiq/storyblok-deep-relations-resolver

Usage

To use the package, simply import it into your project and use the resolve function to resolve the deep relations in your Storyblok API responses.

import {resolveRelationsDeep} from '@elevantiq/storyblok-deep-relations-resolver'

const storyblokApi = getStoryblokApi()

// format: <component>.<field>
export const deepRelations = [
    'articlesTeaser.articles',
    'article.author',
    'article.category',
    'primaryContactTeaser.contactPerson',
]

const {data: preResolveData} = await storyblokApi.get(`cdn/stories/${slug}`, sbParams)

const deepResolvedData = await resolveRelationsDeep(storyblokApi, preResolveData, deepRelations)

For more information on how to use the package, see the documentation.

Contributing

If you would like to contribute to the project, please follow these steps:

  • Fork the repository
  • Create a new branch for your changes
  • Make your changes and commit them with clear commit messages
  • Push your changes to your forked repository
  • Submit a pull request

License

This project is licensed under the MIT License.

Reporting Bugs

If you find any bugs or issues with the package, please report them by creating a new issue on the GitHub issue tracker.

Contact

If you have any questions or feedback, feel free to contact us at our GitHub profile.

FAQs

Package last updated on 03 Mar 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts