gatsby-source-pinboard
v2.0.0
Published
Grab recent bookmarks from Pinboard for use within Gatsby.
Downloads
16
Readme
gatsby-source-pinboard
To use, install the package and add to gatsby-config.js
:
yarn add gatsby-source-pinboard
npm install gatsby-source-pinboard
{
resolve: "gatsby-source-pinboard",
options: {
authToken: "", // required authentication token
tags: "" // optional tag to filter links
}
}
You can query the data with:
allPinboardBookmark(limit: 3) {
edges {
node {
href
description
}
}
}