Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-source-pinboard

NPM version Test build status

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
        }
    }
}
© 2023 Gatsby, Inc.