Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 431 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 431 Bytes

QLCached

Framework for building dynamic, fully configurable GraphQL cache storage.

Work in progress

Usage

import { QLCache } from 'apollo-qlcached';
import { HttpLink } from 'apollo-link-http';
import { ApolloClient } from 'apollo-client';

const cache = new QLCache({ splitMetadata: true });

const client = new ApolloClient({
  link: new HttpLink(),
  cache
});