Community Plugin
View plugin on GitHubgatsby-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-hnapiHow 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