gatsby-source-rss-cat

1.0.1 • Public • Published

gatsby-source-rss-cat

Source plugin for pulling data into Gatsby from rss feed, grouped in categories.

How to use

// In your gatsby-config.js
module.exports = {
  plugins: [
    /*
     * Gatsby's data processing layer begins with “source” plugins. Here we
     * setup the site to pull data from the "documents" collection in a local
     * MongoDB instance
     */
    {
      resolve: `gatsby-source-rss-cat`,
      options: { category: `technology`, feeds: [`https://news.ycombinator.com/rss`, `http://feeds.feedburner.com/TechCrunch/startups`] },
    },
  ],
}

Plugin options

  • category: category that your feeds are related too
  • feeds: an array of url paths to the rss feeds

How to query your rss feed data using GraphQL

Below is a sample query for fetching all rss feed document nodes for this plugin.

query {
  allRssFeedCatDocuments {
    edges {
      node {
        ...
      }
    }
  }
}

Package Sidebar

Install

npm i gatsby-source-rss-cat

Weekly Downloads

2

Version

1.0.1

License

MIT

Unpacked Size

5.43 kB

Total Files

8

Last publish

Collaborators

  • jorishermans