0.1.1 • Published 2 years ago

gatsby-source-hnapi v0.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

gatsby-source-hnapi

Source plugin for pulling data into Gatsby from node-hnapi, an unofficial API for Hacker News.

Install

npm install gatsby-source-hnapi

#or

yarn add gatsby-source-hnapi

How to use

// In your gatsby-config.js
plugins: [`gatsby-source-hnapi`];

How To Query

Returns 30 results for allHnTopstories, allHnLateststories, allHnBeststories, allHnAsks, allHnShow, and allHnJobs.

query MyQuery {
  allHnLatestStories {
    nodes {
      title
      url
      points
      user
      id
      time_ago
      time
      domain
      comments
    }
  }
}

Credits

This plugin is wrapper around node-hnapi