@urql/exchange-populate
populate
is an exchange for auto-populating fields in your mutations.
Read more about the populateExchange
on our docs!
Quick Start Guide
First install @urql/exchange-populate
alongside urql
:
yarn add @urql/exchange-populate
npm install --save @urql/exchange-populate
You'll then need to add the populateExchange
, that this package exposes.
import { createClient, cacheExchange, fetchExchange } from 'urql';
import { populateExchange } from '@urql/exchange-populate';
const client = createClient({
url: 'http://localhost:1234/graphql',
exchanges: [populateExchange({ schema }), cacheExchange, fetchExchange],
});
The schema
option is the introspection result for your backend graphql schema, more information
about how to get your schema can be found in the "Schema Awareness" Page of the Graphcache documentation..
Example usage
Consider the following queries which have been requested in other parts of your application:
{
todos {
id
name
}
}
{
todos {
id
createdAt
}
}
Without the populateExchange
you may write a mutation like the following which returns a newly created todo item:
mutation addTodo(id: ID!) {
addTodo(id: $id) {
id
name
createdAt
}
}
By using populateExchange
, you no longer need to manually specify the selection set required to update your other queries. Instead you can just add the @populate
directive.
mutation addTodo(id: ID!) {
addTodo(id: $id) @populate
}
Note: The above two mutations produce an identical GraphQL request.