GraphQLのApolloクライアントでAddTypeNameを変更しようとしました。
apollo.create({
link: httpLinkWithErrorHandling,
cache: new InMemoryCache({ addTypename: false }),
defaultOptions: {
watchQuery: {
fetchPolicy: 'network-only',
errorPolicy: 'all'
}
}
_
しかし、それは機能し、コンソールで次のメッセージをスローします
fragmentMatcher.js:26 You're using fragments in your queries, but either don't have the addTypename:true option set in Apollo Client, or you are trying to write a fragment to the store without the __typename.Please turn on the addTypename option and include __typename when writing fragments so that Apollo Clientcan accurately match fragments.
_
又
Could not find __typename on Fragment PopulatedOutageType
_
と
fragmentMatcher.js:28 DEPRECATION WARNING: using fragments without __typename is unsupported behavior and will be removed in future versions of Apollo client. You should fix this and set addTypename to true now.
_
true new InMemoryCache({ addTypename: true }),
にfalseを変更したとしても、突然変異の不要なタイプゲームのために変化が失敗します
この問題を解決する方法はありますか
上記の糸では、この問題の答えを投稿しました