내 vue 프로젝트에 graphql을 통합하려고합니다. 다음 지침을 따르고 있습니다 : https://github.com/Akryum/vue-apolloapollo-client에서 createBatchingNetworkInterface 가져 오기
필요에 따라 npm에 'apollo-client'가 설치되어 있지만 'createBatchingNetworkInterface'를 가져올 수 없습니다.
이 내 main.js 파일입니다
import Vue from 'vue'
import { ApolloClient, createBatchingNetworkInterface } from 'apollo-client'
import VueApollo from 'vue-apollo'
import App from './App'
import router from './router'
이 내 아폴로 클라이언트의 index.d.ts 파일입니다
export { print as printAST } from 'graphql/language/printer';
export { ObservableQuery, FetchMoreOptions, UpdateQueryOptions, ApolloCurrentResult } from './core/ObservableQuery';
export { WatchQueryOptions, MutationOptions, SubscriptionOptions, FetchPolicy, FetchMoreQueryOptions, SubscribeToMoreOptions, MutationUpdaterFn } from './core/watchQueryOptions';
export { NetworkStatus } from './core/networkStatus';
export * from './core/types';
export { ApolloError } from './errors/ApolloError';
import ApolloClient, { ApolloClientOptions } from './ApolloClient';
export { ApolloClientOptions };
export { ApolloClient };
export default ApolloClient;
여기 볼 수 없어 ' createBatchingNetworkInterface '원하는 객체.
나는 여기서 무엇을 잘못하고 있는지 모른다.