Display the contents form a Spreadshirt shop on your Gatsby site.
Basic implementation, let's see how it will go.
- Sellable
- ProductType
- Currency
Follow guidelines on https://developer.spreadshirt.net/
Install the plugin as usual
When you want to have a static version of your Spreadshirt product pages
options: {
shopId: SPREADSHIRT_SHOP_ID,
apiKey: SPREADSHIRT_API_KEY,
locale: SPREADSHIRT_LOCALE
}
query MyQuery {
allSpreadshirtSellable {
edges {
node {
name
productType {
name
shortDescription
}
price {
amount
currency {
symbol
}
}
}
}
}
}
Euh... 😳
Create a clone and go for it!
Just create an issue or a pull request.