v3:
https://github.com/apollographql/apollo-client
clean up:
ApolloProvider
useQuery, useMutation, useApolloClient
Apollo Client >= 3 includes React hooks functionality out of the box. You don't need to install any additional packages.
https://www.apollographql.com/docs/react/api/react/hooks/
//import { ApolloProvider } from '@apollo/react-hooks'
import { ApolloProvider } from '@apollo/client/react'
//import { useQuery, useMutation, useApolloClient } from '@apollo/react-hooks'
import { useQuery, useMutation, useApolloClient } from '@apollo/client'
How i can CATCH any error (network and graphql), and prevent promise.reject()
https://github.com/apollographql/apollo-client/issues/6469
npm uninstall @apollo/react-hooks
https://github.com/apollographql/apollo-link
npm uninstall apollo-link
npm uninstall apollo-client
npm uninstall apollo-link-error
npm uninstall apollo-link-http
npm uninstall apollo-link-ws
npm uninstall apollo-cache-inmemory
Comments
Post a Comment