You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/code/Magento/EavGraphQl/etc/schema.graphqls
+14-9Lines changed: 14 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,13 @@
2
2
# See COPYING.txt for license details.
3
3
4
4
typeQuery {
5
-
customAttributeMetadata(attributes: [AttributeInput!]!@doc(description: "An input object that specifies the attribute code and entity type to search.")): CustomAttributeMetadata@resolver(class: "Magento\\EavGraphQl\\Model\\Resolver\\CustomAttributeMetadata") @doc(description: "Return the attribute type, given an attribute code and entity type.") @cache(cacheIdentity: "Magento\\EavGraphQl\\Model\\Resolver\\Cache\\CustomAttributeMetadataIdentity")
customAttributeMetadata(attributes: [AttributeInput!]!@doc(description: "An input object that specifies the attribute code and entity type to search.")):
attributesForm(type: String!@doc(description: "Form type")): AttributesFormOutput!@resolver(class: "Magento\\EavGraphQl\\Model\\Resolver\\AttributesForm") @doc(description: "Retrieve EAV attributes associated to a frontend form.")
8
13
attributesList(entityType: AttributeEntityTypeEnum!@doc(description: "Entity type.")): AttributesMetadataOutput@resolver(class: "Magento\\EavGraphQl\\Model\\Resolver\\AttributesList") @doc(description: "Returns list of atributes metadata for given entity type.") @cache(cacheable: false)
9
14
}
@@ -46,7 +51,7 @@ input AttributeInput @doc(description: "Defines the attribute characteristics to
46
51
}
47
52
48
53
typeAttributesMetadataOutput@doc(description: "Metadata of EAV attributes.") {
0 commit comments