gatsby-source-menus-strapi-plugin
v2.0.1
Published
source the data of menus strapi plugin into Gatsby
Downloads
26
Readme
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-pluginHow 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

Nested menus

Gatsby GraphiQl example

