Skip to content

Commit

Permalink
graphql-ce-120: fixed resolver name
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliyboyko committed Jul 19, 2018
1 parent 3b64955 commit b5a2a98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* StoreConfig page field resolver, used for GraphQL request processing.
*/
class StoreConfigs implements ResolverInterface
class StoreConfigsResolver implements ResolverInterface
{
/**
* @var StoreConfigsDataProvider
Expand Down
2 changes: 1 addition & 1 deletion app/code/Magento/StoreGraphQl/etc/schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type Query {
storeConfigs (
storeCodes: [String] @doc(description: "Store Codes of the store configs")
): StoreConfigs
@resolver(class: "Magento\\StoreGraphQl\\Model\\Resolver\\StoreConfigs") @doc(description: "The store configs query")
@resolver(class: "Magento\\StoreGraphQl\\Model\\Resolver\\StoreConfigsResolver") @doc(description: "The store configs query")
}

type Website @doc(description: "The type contains information about a website") {
Expand Down

0 comments on commit b5a2a98

Please sign in to comment.