apollo-elements/apollo-elements

View on GitHub
docs/api/libraries/_assets/client.spacex.export.js

Summary

Maintainability
A
0 mins
Test Coverage
import { ApolloClient, HttpLink, InMemoryCache } from '@apollo/client/core';

export const client = new ApolloClient({
  cache: new InMemoryCache(),
  link: new HttpLink({ uri: 'https://api.spacex.land/graphql' }),
});