From b40ac3f80b63693a879cb35e522a67a39ba6607d Mon Sep 17 00:00:00 2001 From: Martin Hettiger Date: Sun, 27 Nov 2022 22:03:12 +0100 Subject: [PATCH] Fix Module not found: Error: Can't resolve 'react' errors See: https://github.com/apollographql/apollo-client/issues/7318#issuecomment-734422428 --- projects/demo/src/app/app.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/demo/src/app/app.module.ts b/projects/demo/src/app/app.module.ts index bf698f6..f1c4b86 100644 --- a/projects/demo/src/app/app.module.ts +++ b/projects/demo/src/app/app.module.ts @@ -18,7 +18,7 @@ import { MatListModule } from '@angular/material/list'; import { APOLLO_OPTIONS } from 'apollo-angular'; import { HttpLink } from 'apollo-angular/http'; -import { InMemoryCache } from '@apollo/client'; +import { InMemoryCache } from '@apollo/client/core'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component';