Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-source-savedio

Plugin to source all bookmarks from saved.io

Install

npm install --save gatsby-source-savedio

How to use

// In your gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: 'gatsby-source-savedio',
      options: {
        devkey: 'YOUR DEVELOPER KEY'
        key: 'YOUR USER KEY'
      }
    }
  ]
};

How to query

You can query bookmark nodes like this:

{
  allSavedioBookmark {
    edges {
      node {
        bk_id
        bk_url
        bk_title
        bk_note
        bk_date
      }
    }
  }
}
© 2023 Gatsby, Inc.