Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 993 Bytes

File metadata and controls

43 lines (30 loc) · 993 Bytes

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