gatsby-source-hacker-news

5.13.1 • Public • Published

gatsby-source-hacker-news

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

Install

npm install 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
        }
      }
    }
  }
}

Dependencies (3)

Dev Dependencies (4)

Package Sidebar

Install

npm i gatsby-source-hacker-news

Weekly Downloads

2

Version

5.13.1

License

MIT

Unpacked Size

42.8 kB

Total Files

7

Last publish

Collaborators

  • kathmbeck
  • pieh
  • tylerbarnes
  • fk
  • daniellewgatsby
  • wardpeet