gatsby-source-fridge
v0.0.3
Published
Add Fridge content into your Gatsby project.
Maintainers
Readme
Installation
$ npm install --save gatsby-source-fridge// gatsby-config.js
module.exports = {
plugins: [
{
resolve: 'gatsby-source-fridge',
options: {
token: 'FRIDGE_API_TOKEN'
}
}
]
}Querying Content
allFridgePages {
edges {
node {
name
slug
content
images {
url
}
}
}
}fridgeSettings {
logo {
url
}
copyright
}