chec / gatsby-source-chec

Chec and Commerce.js Gatsby source plugin. Fetch eCommerce data from the Chec API.
https://gatsby-source-chec.netlify.app
BSD 3-Clause "New" or "Revised" License
12 stars 5 forks source link

feat: connect category and products #16

Closed notrab closed 4 years ago

notrab commented 4 years ago

This PR enables queries such as:

{
  allChecProduct {
    nodes {
      name
      categories {
        name
      }
    }
  }
}

and

{
  allChecCategory {
    nodes {
      id
      products {
        name
        internal {
          type
        }
        id
      }
    }
  }
}
github-actions[bot] commented 4 years ago

:tada: This PR is included in version 1.1.0 :tada:

The release is available on:

Your semantic-release bot :package::rocket: