glweems / gatsby-source-medium-posts

Gatsby plugin to fetch medium posts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gatsby Source Medium Posts

CircleCI

Setup

npm install gatsby-source-medium-posts

// gatsby-node.js
module.exports = {
  plugins: [
    {
      resolve: `gatsby-source-medium-posts`,
      options: {
        username: "glweems",
      },
    },
  ],
}

Content field returns html of your blog post.

// Example Query
{
  allMediumPost {
    edges {
      node {
        id
        title
        pubDate
        link
        guid
        author
        thumbnail
        content
        categories
        description
      }
    }
  }
}

About

Gatsby plugin to fetch medium posts


Languages

Language:JavaScript 100.0%