2.0.1 • Published 2 years ago

gatsby-source-menus-strapi-plugin v2.0.1

Weekly downloads
-
License
0BSD
Repository
github
Last release
2 years ago

Gatsby source menus strapi plugin

The package helps you to fetch data from strapi plugin menus into GatsbyJs as graphql nodes.

Install

yarn add gatsby-source-menus-strapi-plugin

How to use

gatsby-config.js

module.exports = {
  plugins: [
    {
      resolve: `gatsby-source-menus-strapi-plugin`,
      options: {
        apiURL: `http://localhost:1337`,
        menusEndpoint: `menus`,
        nested: true, // default to false
        menuID: '', // leave it empty string for all menu population ,otherwise add your menu id number
      },
    },
  ],
}

Strapi plugin menus example

Top level menus

strapi plugin menus - menu manager

Nested menus

strapi plugin menus - nested menus

Gatsby GraphiQl example

strapi plugin menus - nested menus

2.0.1

2 years ago

2.0.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago