gatsby-source-savedio
v1.0.0
Published
Gatsby plugin that sources bookmarks from saved.io
Downloads
1
Maintainers
Readme
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
}
}
}
}