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
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
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(cacheable: false)
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")
6
6
}
7
7
8
8
typeCustomAttributeMetadata@doc(description: "Defines an array of custom attributes.") {
Copy file name to clipboardExpand all lines: app/code/Magento/StoreGraphQl/etc/schema.graphqls
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ type Query {
4
4
storeConfig : StoreConfig @resolver(class: "Magento\\StoreGraphQl\\Model\\Resolver\\StoreConfigResolver") @doc(description: "Return details about the store's configuration.") @cache(cacheIdentity: "Magento\\StoreGraphQl\\Model\\Resolver\\Store\\ConfigIdentity")
5
5
availableStores(
6
6
useCurrentGroup: Boolean@doc(description: "Filter store views by the current store group.")
7
-
): [StoreConfig] @resolver(class: "Magento\\StoreGraphQl\\Model\\Resolver\\AvailableStoresResolver") @doc(description: "Get a list of available store views and their config information.")
7
+
): [StoreConfig] @resolver(class: "Magento\\StoreGraphQl\\Model\\Resolver\\AvailableStoresResolver") @doc(description: "Get a list of available store views and their config information.")@cache(cacheIdentity: "Magento\\StoreGraphQl\\Model\\Resolver\\Stores\\ConfigIdentity")
8
8
}
9
9
10
10
typeWebsite@doc(description: "Deprecated. It should not be used on the storefront. Contains information about a website.") {
0 commit comments