gatsby-source-hnapi
v0.1.1
Published
A gatsby plugin to pull data from node-hnapi, an unofficial API for Hacker News.
Downloads
4
Maintainers
Readme
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