mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
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:
parent
db170558d5
commit
9387178538
@ -58,7 +58,7 @@ export const productInfoFragment = /* GraphQL */ `
|
||||
}
|
||||
}
|
||||
}
|
||||
variants {
|
||||
variants(first: 250) {
|
||||
edges {
|
||||
node {
|
||||
entityId
|
||||
|
@ -21,7 +21,7 @@ export const getProductQuery = /* GraphQL */ `
|
||||
__typename
|
||||
... on Product {
|
||||
...productInfo
|
||||
variants {
|
||||
variants(first: 250) {
|
||||
edges {
|
||||
node {
|
||||
entityId
|
||||
|
Loading…
x
Reference in New Issue
Block a user