Skip to content

Commit d881c3a

Browse files
author
Mikhaël Bois
authored
PWA-2548 Remove is_visible_on_front to use used_in_components (#21)
1 parent 715ee45 commit d881c3a

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

EavGraphQlAux/Model/Resolver/DataProvider/AttributeMetadata.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ public function getAttributeMetadata(AttributeInterface $attribute, int $storeId
8181
'data_type' => $dataType !== '' ? $dataType : self::COMPLEX_DATA_TYPE,
8282
'sort_order' => $attribute->getPosition(),
8383
'is_system' => !$attribute->getIsUserDefined(),
84-
'is_visible_on_front' => $attribute->getIsVisibleOnFront(),
8584
'entity_type' => $this->enumLookup->getEnumValueFromField(
8685
'AttributeEntityTypeEnum',
8786
$attribute->getEntityType()->getEntityTypeCode()

EavGraphQlAux/etc/schema.graphqls

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ interface AttributeMetadataInterface @typeResolver(class: "Magento\\EavGraphQlAu
2323
data_type: ObjectDataTypeEnum @doc(description: "The data type of the attribute.")
2424
sort_order: Int @doc(description: "The relative position of the attribute.")
2525
is_system: Boolean @doc(description: "Indicates whether the attribute is a system attribute.")
26-
is_visible_on_front: Boolean @doc(description: "Indicates whether the attribute is visible on Catalog Pages on Storefront.")
2726
entity_type: AttributeEntityTypeEnum @doc(description: "The type of entity that defines the attribute.")
2827
ui_input: UiInputTypeInterface @doc(description: "Frontend UI properties of the attribute.")
2928
}

0 commit comments

Comments
 (0)