diff --git a/app/code/Magento/EavGraphQl/Model/Resolver/AttributeOptions.php b/app/code/Magento/EavGraphQl/Model/Resolver/AttributeOptions.php index 1c341012083b9..72f483b7445bb 100644 --- a/app/code/Magento/EavGraphQl/Model/Resolver/AttributeOptions.php +++ b/app/code/Magento/EavGraphQl/Model/Resolver/AttributeOptions.php @@ -68,7 +68,7 @@ public function resolve( if (is_array($attributeOptions)) { /** @var \Magento\Eav\Api\Data\AttributeOptionInterface $option */ foreach ($attributeOptions as $option) { - if (!$option->getValue()) { + if ($option->getValue() === '') { continue; }