mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
fix(bigcommerce): add limit on product variants
add explicit limit on product variants field to load more than default
This commit is contained in:
parent
4508b13a3c
commit
9b3904c1f3
@ -58,7 +58,7 @@ export const productInfoFragment = /* GraphQL */ `
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
variants {
|
variants(first: 250) {
|
||||||
edges {
|
edges {
|
||||||
node {
|
node {
|
||||||
entityId
|
entityId
|
||||||
|
@ -21,7 +21,7 @@ export const getProductQuery = /* GraphQL */ `
|
|||||||
__typename
|
__typename
|
||||||
... on Product {
|
... on Product {
|
||||||
...productInfo
|
...productInfo
|
||||||
variants {
|
variants(first: 250) {
|
||||||
edges {
|
edges {
|
||||||
node {
|
node {
|
||||||
entityId
|
entityId
|
||||||
|
Loading…
x
Reference in New Issue
Block a user