Dedicated to the Hydrogen framework, headless commerce, and building custom storefronts using the Storefront API.
Hey- If I need to get the products from outside through an endpoint, what would be that endpoint?
Storefront API endpoint is: yourshop.myshopify.com/api/2022-01/graphql.json (you'll need to include your storefront access token)
{
products(first: 50) {
edges {
node {
id
title
}
}
}
}
Will return 50 products