npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@instructure/apollo-link-deep-dedup

v1.0.0

Published

An Apollo Link library for GraphQL Query Deduplication

Downloads

5

Readme

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 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