Skip to main content
Official Plugin
View plugin on GitHub
See starters using this

gatsby-source-hacker-news

Source plugin for pulling data into Gatsby from the Hacker News API

Install

npm install --save gatsby-source-hacker-news

How to use

// In your gatsby-config.js
plugins: [`gatsby-source-hacker-news`]

How to query

You can query nodes created from Hacker News like the following:

query {
  allHnStory(sort: { fields: [order] }) {
    edges {
      node {
        id
        title
        score
        order
        domain
        url
        by
        descendants
        timeISO(fromNow: true)
        childrenHnComment {
          id
          text
          timeISO(fromNow: true)
          by
        }
      }
    }
  }
}

Edit this page on GitHub
Docs
Tutorials
Plugins
Blog
Showcase