UNPKG

gatsby-source-shopify-storefront

Version:

Gatsby source plugin for using product data from the Shopify Storefront API

54 lines 1.16 kB
module.exports = `query ProductsQuery { shop { name products(first: 250, sortKey: UPDATED_AT) { pageInfo { hasNextPage hasPreviousPage } edges { node { id title createdAt updatedAt variants(first: 250) { pageInfo { hasNextPage hasPreviousPage } edges { node { id title selectedOptions { name value } image { src } price } } } images(first: 250) { pageInfo { hasNextPage hasPreviousPage } edges { node { id src } } } description descriptionHtml productType } } } } }`;