Skip to content

Commit

Permalink
fix apollo imports
Browse files Browse the repository at this point in the history
  • Loading branch information
roryc89 committed Aug 1, 2022
1 parent 227c70d commit 83ad147
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/GraphQL/Client/BaseClients/Apollo.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import 'isomorphic-unfetch';
import { ApolloClient, InMemoryCache, createHttpLink } from '@apollo/client/core';
import { setContext } from '@apollo/client/link/context';
import { WebSocketLink } from '@apollo/client/link/ws';
import { split, HttpLink, InMemoryCache, ApolloClient } from '@apollo/client/core';
import { gql, split, HttpLink, createHttpLink, InMemoryCache, ApolloClient } from '@apollo/client/core';
import { getMainDefinition } from '@apollo/client/utilities';
import { setContext } from '@apollo/client/link/context';
import ws from 'isomorphic-ws';
import { SubscriptionClient } from 'subscriptions-transport-ws';
import { gql } from '@apollo/client/core';

const createClientWithoutWebsockets = function (opts) {

Expand Down

0 comments on commit 83ad147

Please sign in to comment.