Fixes quirks with featured and related products. (#978)

This commit is contained in:
Michael Novotny
2023-04-21 11:19:08 -05:00
committed by GitHub
parent 7de3ae5583
commit 8ff670d7d6
4 changed files with 4 additions and 5 deletions

View File

@@ -36,9 +36,9 @@ export const getCollectionsQuery = /* GraphQL */ `
`;
export const getCollectionProductsQuery = /* GraphQL */ `
query getCollectionProducts($handle: String!, $first: Int = 100) {
query getCollectionProducts($handle: String!) {
collection(handle: $handle) {
products(first: $first) {
products(first: 100) {
edges {
node {
...product