gatsby-source-kdc-cms
v0.1.4
Published
Gatsby source plugin for building websites using KDC CMS as a data source
Downloads
6
Maintainers
Readme
gatsby-source-kdc-cms
Source plugin for pulling documents into Gatsby from a KDC CMS API.
Install
npm install --save gatsby-source-kdc-cms
How to use
// In your gatsby-config.js
plugins: [
{
resolve: `gatsby-source-kdc-cms`,
options: {
apiURL: `http://localhost:8101`,
queryLimit: 100, // Default to 100
contentTypes: [`pages`, `contents/blog`], // these are your content type id
jwtToken: process.env.KDC_CMS_TOKEN
}
}
];
How to query
You can query Document nodes created from your KDC CMS API like the following:
{
allKdccmsBlog {
edges {
node {
id
title
subtitle
}
}
}
}
Example
For a full working example using this plugin, see gatsby-blog-kdc-cms