Skip to content

Commit f88593a

Browse files
committed
PWA-1654: Staged upcoming products don't show up in categoryList query for preview
- fix type
1 parent 0baf604 commit f88593a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/CatalogGraphQl/Model/Resolver/CategoriesQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public function resolve(Field $field, $context, ResolveInfo $info, array $value
8787

8888
$rootCategoryIds = $filterResult['category_ids'] ?? [];
8989

90-
$filterResult['items'] = $this->fetchCategories($rootCategoryIds, $info, $store->getId());
90+
$filterResult['items'] = $this->fetchCategories($rootCategoryIds, $info, (int) $store->getId());
9191
return $filterResult;
9292
}
9393

0 commit comments

Comments
 (0)