We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4f290d commit 432228cCopy full SHA for 432228c
app/code/Magento/StoreGraphQl/Model/Resolver/Store/Identity.php
@@ -22,10 +22,11 @@ class Identity implements IdentityInterface
22
*/
23
public function getIdentities(array $resolvedData): array
24
{
25
+ $data["id"] = empty($resolvedData) ? [] : $resolvedData["id"];
26
$ids = empty($resolvedData) ?
27
[] : array_merge([$this->cacheTag], array_map(function ($key) {
28
return sprintf('%s_%s', $this->cacheTag, $key);
- }, array_keys($resolvedData)));
29
+ }, $data));
30
return $ids;
31
}
32
0 commit comments