GithubHelp home page GithubHelp logo

isabella232 / apollo-link-deep-dedup Goto Github PK

View Code? Open in Web Editor NEW

This project forked from instructure/apollo-link-deep-dedup

0.0 0.0 0.0 191 KB

Apollo Link for combining queries and issuing minimal requests.

License: MIT License

JavaScript 1.52% TypeScript 98.48%

apollo-link-deep-dedup's Introduction

apollo-link-deep-dedup

A custom Apollo Link library for resolving GraphQL query against cache as much as possible and issuing minimal requests.

Motivation

The implementation of Apollo client results in sending full queries to the server over the network, which can be partially fulfilled by the cached data.

Resolving every query with cached data as much as possible and issuing the minimal request to the server reduces the size of data transferring over the network, and alleviates the query resolution work on the server on an each-query basis.

Features

Apollo client writes the data from every query to the cache as normalized objects. For every query, deepDedupLink

  • resolves the query against the cache
  • gets partial results from cache
  • removes fully-resolved fields from the query
  • sends query to downstream links (e.g. httpLink for issuing request to the server)
  • merges partial results from both cache and server
  • sends full result to upstream links

deepDedupLink deduplicates queries thoroughly. Even with very nested queries, it is able to deduplicate the query at every-field level (see below example).

It currently only supports apollo-cache-inmemory and bypasses deduplication on non-query operations (e.g. mutation and subscription) and fields with directives and fragments.

Example

First query

query {
    authors {
        id
        firstName
        posts {
            id
            votes
        }
    }
    press {
        name
        address
    }
}

Second query without deduplication

query {
    authors {
        id
        firstName
        lastName
        posts {
            id
            votes
            title
        }
    }
    press {
        name
        address
    }
}

Second query with deduplication (the one that gets sent to the server)

query {
    authors {
        lastName
        posts {
            title
        }
    }
}

Installation

npm install @instructure/apollo-link-deep-dedup --save

Usage

import InMemoryCache from 'apollo-cache-inmemory';
import { DeepDedupLink } from 'apollo-link-deep-dedup';

const cache = new InMemoryCache();
const deepDedupLink = new DeepDedupLink({ cache });

Use link with apollo client and other links

import ApolloClient from 'apollo-client';
import InMemoryCache from 'apollo-cache-inmemory';
import { ApolloLink } from 'apollo-link';

// import DeepDedupLink
import { DeepDedupLink } from 'apollo-link-deep-dedup';

// cache used by apollo client
const cache = new InMemoryCache();

// pass in the cache as an option to initialize deepDedupLink
const deepDedupLink = new DeepDedupLink({ cache });

// compose apollo links
const link = ApolloLink.from([
    // ...upstreamLinks,
    deepDedupLink,
    // ...downstreamLinks (e.g. httpLink),
]);

// initialize apollo client with the cache and links
const client = new ApolloClient({
    link,
    cache,
});

Options

deepDedupLink takes an object with one required cache option

  • cache: the same cache object passed in when initializing ApolloClient

Context

deepDedupLink can be overridden by using the context on a per operation basis:

  • forceFetch: a boolean (defaults to false) to bypass deduplication per request
// a query with apollo-client that will not be deduplicated
client.query({
    query: MY_QUERY,
    context: {
        forceFetch: true,
    }
});

Development

git clone https://github.com/instructure/apollo-link-deep-dedup.git

npm install
npm run watch

A development guide can be found here.

License

MIT

apollo-link-deep-dedup's People

Contributors

leontaolong avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.