Community Plugin
View plugin on GitHubGatsby plugin medium feed
This plugin returns the content of medium posts.
Available properties are:
- title
- date
- author
- link
- content
- thumbnail
- slug
Usage
- Run
npm i -S gatsby-plugin-medium-feed
- Add plugin to your
gatsby-config.js
:
plugins: [
{
resolve: 'gatsby-plugin-medium-feed',
options: {
userName: '@...', // Medium user name
name: 'MediumFeed', // GraphQL query AllMediumFeed
},
},
]