I'm trying to create server with ApolloClient and GraphQL but got the following error:
SyntaxError: Named export 'ApolloClient' not found. The requested module '@apollo/client' is a CommonJS module, which may not support all module.exports as named exports.
my code looks like this:
import { ApolloClient, InMemoryCache, createHttpLink } from '@apollo/client'
const httpLink = createHttpLink({
uri: 'http://localhost:4000/graphql',
})
const createApolloClient = () => {
return new ApolloClient({
link: httpLink,
cache: new InMemoryCache(),
})
}
export default createApolloClient
I tried
import pkg from '@apollo/client'
const { ApolloClient, InMemoryCache, createHttpLink } = pkg
but it didn't help
I'm trying to create server with ApolloClient and GraphQL but got the following error:
SyntaxError: Named export 'ApolloClient' not found. The requested module '@apollo/client' is a CommonJS module, which may not support all module.exports as named exports.
my code looks like this:
import { ApolloClient, InMemoryCache, createHttpLink } from '@apollo/client'
const httpLink = createHttpLink({
uri: 'http://localhost:4000/graphql',
})
const createApolloClient = () => {
return new ApolloClient({
link: httpLink,
cache: new InMemoryCache(),
})
}
export default createApolloClient
I tried
import pkg from '@apollo/client'
const { ApolloClient, InMemoryCache, createHttpLink } = pkg
but it didn't help
Share Improve this question asked Mar 8, 2022 at 19:02 Davit GelovaniDavit Gelovani 1791 silver badge9 bronze badges 7- What version of Apollo Client? – Dave Newton Commented Mar 8, 2022 at 19:07
- @HumbleDeveloper01 I created new project but result is same – Davit Gelovani Commented Mar 8, 2022 at 19:13
- @DaveNewton Version is - 3.5.10 – Davit Gelovani Commented Mar 8, 2022 at 19:13
- try to update last version and remove old version – user10991969 Commented Mar 8, 2022 at 19:18
- @HumbleDeveloper01 That's the latest non-beta version. – Dave Newton Commented Mar 8, 2022 at 19:23
3 Answers
Reset to default 9Good news @davit-gelovani
I reached to import Apollo the way you need, just like that :
import { ApolloClient, InMemoryCache } from "@apollo/client/core/core.cjs";
import { HttpLink } from "@apollo/client/link/http/http.cjs";
on @apollo/client version 3.7.0