Socket
Book a DemoInstallSign in
Socket

gatsby-source-savedio

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gatsby-source-savedio

Gatsby plugin that sources bookmarks from saved.io

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

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
      }
    }
  }
}

Keywords

gatsby

FAQs

Package last updated on 27 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts