fetch-fragment-matcher
v0.1.7
Published
Fetch a graphql endpoint to generate the fragmentTypes for apollo-client
Maintainers
Readme
(Information collected from here and here)
Problem
Using union (or interface) ObjectTypes, requires providing a custom fragmentMatcher property to the constructor options of apolloClient.
Solution
The solution is to provide a custom fragmentMatcher argument to the options for your apolloClient.
Right now, this is something you'll need to do by hand – i.e. if you revise your ObjectTypes on your server, you'll need to keep this in sync on your client.
How to use this?
Run
fetch-fragment-matcherwith the arguments:[Input - one of the two options]
fetch --e(--endpoint): The graphql server endpointget --d(--directory): The folder directory that contains.gql | .graphqltype definitions
[Output]
- --o (--output): The output directory (or to set full path use --output-file)
Set the fragment matcher in apollo-client
import { ApolloClient } from 'apollo-client';
import { InMemoryCache, IntrospectionFragmentMatcher } from 'apollo-cache-inmemory';
const introspectionQueryResultData = require('./fragmentTypes.json');
const fragmentMatcher = new IntrospectionFragmentMatcher({
introspectionQueryResultData
});
const client = new ApolloClient({
cache: new InMemoryCache({ fragmentMatcher })
});