forked from crowetic/commerce
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 {
|
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