$ cnpm install apollo-link-dedup
NOTE This link is included by default when using apollo-client so you don't need to add it to your link chain if using apollo-client.
npm install apollo-link-dedup --save
import { DedupLink } from "apollo-link-dedup";
const link = new DedupLink();
The Dedup Link does not take any options when creating the link.
The Dedup Link can be overridden by using the context on a per operation basis:
forceFetch: a true or false (defaults to false) to bypass deduplication per requestimport { createHttpLink } from "apollo-link-http";
import ApolloClient from "apollo-client";
import InMemoryCache from "apollo-cache-inmemory";
const client = new ApolloClient({
link: createHttpLink({ uri: "/graphql" }),
cache: new InMemoryCache()
});
// a query with apollo-client that will not be deduped
client.query({
query: MY_QUERY,
context: {
forceFetch: true
}
})
Copyright 2013 - present © cnpmjs.org | Home |