gatsby-source-ecwid
v1.0.3
Published
Source ecwid
Downloads
6
Maintainers
Readme
gatsby-source-ecwid
Gatsby source plugin for fetching api in ecwid
Install
yarn add gatsby-source-ecwid
How to use
// In your gatsby-config.js
plugins: [
{
resolve: "gatsby-source-ecwid",
options: {
storeId: "...",
token: "...",
endpoints: {
EcwidProducts: "products",
EcwidCategories: "categories",
},
},
}
],
How to query
You can query Document nodes created from your Ecwid API like the following:
{
allEcwidProducts {
nodes {
id
name
price
description
imageUrl
}
}
}