2017-04-26 8 views
1

未定義で、私はエラーに次取得していますapolloClient.subsribeは、私はアポロを購読しようとしています

const networkInterface = createNetworkInterface('http://localhost:8000/graphql'); 

const wsClient = new SubscriptionClient(`ws://localhost:8000/`, { 
       reconnect: true, 
       connectionParams: { 
       } 
}); 

const networkInterfaceWithSubscriptions = addGraphQLSubscriptions(networkInterface,wsClient); 


const apolloClient = new ApolloClient({ 
    networkInterface: networkInterfaceWithSubscriptions 
}) 

答えて

1

理由が原因で間違った名前である私のクライアント側のサブスクリプションを取り付け

apolloClient.Subsribe is undefined

apolloClient.subscribe私の問題を修正しました

関連する問題