Skip to content

Instantly share code, notes, and snippets.

@Gregoirevda
Created January 18, 2018 17:19
Show Gist options
  • Save Gregoirevda/7ffef54a29f0447ac6643b3d3d312eae to your computer and use it in GitHub Desktop.
Save Gregoirevda/7ffef54a29f0447ac6643b3d3d312eae to your computer and use it in GitHub Desktop.
Apollo Client
module Client =
ReasonApollo.CreateClient(
{
let apolloClient =
ReasonApollo.createApolloClient(
~cache=InMemoryCache.cache,
~link=ApolloLinks.from([|HttpLink.link|]),
()
);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment