Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

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

© 2023 Gatsby, Inc.