Ben React ile Apollo istemci sürüm 2 ile ilgili bir sorun var. (https://www.apollographql.com/docs/react/)React ile Apollo istemcisi 2 sorgu yapamadı
Ben kurulum Apollo istemci docs göre, ben GraphQl sunucuda sorgu yapamaz, bu yükseltir hatası:
Uncaught (in promise) TypeError: _super.call is not a function
at new ObservableQuery (ObservableQuery.js:36)
at QueryManager.watchQuery (QueryManager.js:393)
at QueryManager.js:420
at new Promise (<anonymous>)
at QueryManager.query (QueryManager.js:418)
at ApolloClient.query (ApolloClient.js:86)
at Object._typeof (index.js:21)
at __webpack_require__ (bootstrap 4164d2c8f7d280e544dd:19)
at Object.<anonymous> (location.js:34)
at __webpack_require__ (bootstrap 4164d2c8f7d280e544dd:19)
burada
Kodum:
import { ApolloClient } from "apollo-client";
import { HttpLink } from "apollo-link-http";
import { InMemoryCache } from "apollo-cache-inmemory";
import gql from "graphql-tag";
const client = new ApolloClient({
link: new HttpLink({ uri: "https://q80vw8qjp.lp.gql.zone/graphql" }),
cache: new InMemoryCache()
});
client
.query({query: gql`{hello}`})
.then(console.log);
herkes Olabilir Bu sorunun çözümünde bana yardımcı olun
Bundan böyle bir şey var mı? Uygulamanızın geri kalanı neye benziyor? Webpack kullanıyor musunuz? – Dan
Bu sorunu da yaşıyorum. Oldukça önemli bir sorun ve birkaç ay oldu :( – swyx