Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
gatsby-source-sylius-rest
Advanced tools
gatsby-source-sylius-rest
helps you source the data from Sylius e-Commerce framework. It sources all necessary data and creates localized pages for you.
This source plugin uses API provided by SyliusShopApi bundle.
Please check full docs here.
Using yarn:
yarn add gatsby-source-sylius-rest
or npm:
npm install --save gatsby-source-sylius-rest
Add plugin configuration to your gatsby-config.js
:
module.exports = {
plugins: [
// plugins
{
resolve: 'gatsby-source-sylius-rest',
options: {
locales: ['en', 'de'],
url: 'https://your-sylius-shop.com/shop-api',
pages: [
{
component: require.resolve('./src/templates/SyliusTaxonPage.tsx'),
type: 'taxon',
},
{
component: require.resolve('./src/templates/SyliusProductPage.tsx'),
type: 'product',
path: {
de: '/:locale/produkt/:slug',
en: '/:locale/product/:slug',
},
},
],
schemas: {
product: {
variantSelectionMethod: 'String!',
},
},
},
},
],
};
Please check SyliusSourcePluginOptionsInterface definition for TypeScript interface.
Name | Required | Type | Description |
---|---|---|---|
debug | no | boolean | Provides additional messages during Gatsby build |
limits | no | SyliusSourcePluginLimits | Rows limits used for pagination for specific calls to Sylius Shop API. |
locales | yes | string[] | List of supported locales. They are required for retrieving data from Sylius API, sourcing GraphQL nodes and link building. |
pages | no | SyliusSourcePluginPageDefinition[] | Definitions of pages which should be created using Gatsby Node API (createPages ). If empty, gatsby-source-sylius-rest will not create pages. |
schemas | no | SyliusSourcePluginSchemas | Definitions of additional or overriden fields in schemas that will be sourced. |
url | yes | string | URL to the Sylius shop API. |
Write yarn run test
in terminal or use launch configurations in your Visual Studio Code.
FAQs
Gatsby plugin for Sylius e-commerce framework
We found that gatsby-source-sylius-rest demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.