Skip to content

Commit

Permalink
fix(product): get all products fails in magento driver (#2789)
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 committed May 13, 2024
1 parent cc8a00d commit bdc59f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const DAFF_MAGENTO_GET_ALL_PRODUCTS_QUERY_NAME = 'MagentoGetAllProducts';

export const getAllProducts = (extraProductFragments: DocumentNode[] = []) => gql`
query ${DAFF_MAGENTO_GET_ALL_PRODUCTS_QUERY_NAME}($pageSize: Int) {
products(pageSize: $pageSize) {
products(pageSize: $pageSize, search: "") {
total_count
items {
...magentoProductPage
Expand Down

0 comments on commit bdc59f0

Please sign in to comment.