最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - SyntaxError: Named export 'ApolloClient' not found - Stack Overflow

programmeradmin6浏览0评论

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
 |  Show 2 more ments

3 Answers 3

Reset to default 9

Good 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

发布评论

评论列表(0)

  1. 暂无评论