Gridsome plugin to retrieve blog posts from your devblog on hashnode.
npm install gridsome-source-hashnode-devblog
Gridsome plugin to retrieve blog posts from your devblog on hashnode.
```For npm
$ npm install gridsome-source-hashnode-devblogFor yarn
$ yarn add gridsome-source-hashnode-devblog
Add gridsome-source-hashnode-devblog to plugin array with following configurable options to gridsome.config.js
`js@
module.exports = {
plugins: [
{
use: 'gridsome-source-hashnode-devblog',
options: {
username: '', // Your username on hashnode without .`
typeName: 'DevblogPost' // Optional
}
}
]
}
`graphql``
query {
allDevblogPost {
edges {
node {
title
slug
type
dateAdded
contentMarkdown
brief
coverImage
tags {
name
}
dateUpdated
}
}
}
}
Open LICENSE file for more info