fix(bigcommerce): add limit on product variants (#655)

add explicit limit on product variants field to load more than default
This commit is contained in:
Andrea Barani
2022-02-18 10:40:59 +01:00
committed by GitHub
parent db170558d5
commit 9387178538
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ export const productInfoFragment = /* GraphQL */ `
}
}
}
variants {
variants(first: 250) {
edges {
node {
entityId

View File

@@ -21,7 +21,7 @@ export const getProductQuery = /* GraphQL */ `
__typename
... on Product {
...productInfo
variants {
variants(first: 250) {
edges {
node {
entityId