From f1f5f1c74b4cd78a931d9b1a5d2a79484d884f17 Mon Sep 17 00:00:00 2001 From: William Li Date: Fri, 28 Sep 2018 06:21:56 +0800 Subject: [PATCH] incorrect GraphQL Client usage in sample code GraphQLClient was used but AccountsGraphQLClient was imported. --- src/pages/docs/transport/graphql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/docs/transport/graphql.md b/src/pages/docs/transport/graphql.md index fc1ed54..6273952 100644 --- a/src/pages/docs/transport/graphql.md +++ b/src/pages/docs/transport/graphql.md @@ -230,7 +230,7 @@ const apolloClient = new ApolloClient({ // apollo options }); -const accountsGraphQL = new GraphQLClient({ +const accountsGraphQL = new AccountsGraphQLClient({ graphQLClient: apolloClient, // other options });