RestDB / gatsby-source-restdb

Source plugin to use restdb.io as a data source for a Gatsby JS site (https://www.gatsbyjs.org/)
1 stars 0 forks source link

gatsby-source-restdb

This is a source plugin to fetch data from a restdb.io database.

Set The Config

In gatsby-config.js:

module.exports = {
    plugins: [
        {
            resolve: 'gatsby-source-restdb',
            options: {
                apikey: "custom or full access api key"
            },
        },
    ],
}