gatsby-source-amazon-wishlist

0.1.0 • Public • Published

gatsby-source-amazon-wishlist

Loads items from an Amazon Wishlist into Gatsby.js

Installation

npm install gatsby-source-amazon-wishlist

Usage

Edit gatsby-config.js to use the plugin:

{
    ...
    plugins: [
    ...
    {
      resolve: 'gatsby-source-amazon-wishlist',
      options: {
        wishlistUrl: 'https://www.amazon.de/registry/wishlist/2WVYBLDQ5KDSG',
        language: 'en-GB',
        limit: 25,
      },
    },
  ]
}

Options

  • wishlistUrl: URL to your amazon wishlist, this must be public or shared.
  • language: The language to pass in the Accept-Language header, I use en-GB because I like the euro sign in front of my prices, defaults to en-US.
  • limit: Whether to stop fetching at a specific limit, defaults to false

Querying

You can query the nodes created by the plugin as follows:

{
  allAmazonWishlistItem {
    edges {
      node {
        id
        title
        url
        price
        features
        comment
        priority
        purchased
        requested
        image {
          url
        }
      }
    }
  }
}

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.0
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.0
    0

Package Sidebar

Install

npm i gatsby-source-amazon-wishlist

Weekly Downloads

0

Version

0.1.0

License

MIT

Unpacked Size

15.2 kB

Total Files

10

Last publish

Collaborators

  • thisismissem