Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #618 from shian15810/master
Browse files Browse the repository at this point in the history
exposed createBatchingNetworkInterface from apollo-client
  • Loading branch information
helfer committed Apr 13, 2017
2 parents 01b8b10 + 450c373 commit a5c5ce1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Expand Up @@ -2,6 +2,9 @@

Expect active development and potentially significant breaking changes in the `0.x` track. We'll try to be diligent about releasing a `1.0` version in a timely fashion (ideally within 1 or 2 months), so that we can take advantage of SemVer to signify breaking changes from that point on.

### vNext
- Exposed `createBatchingNetworkInterface` from apollo-client so that it can be imported from react-apollo just like `createNetworkInterface`. [PR #618](https://github.com/apollographql/react-apollo/pull/618)

### 1.0.1
- Fix: Make sure recycled queries are in cache only mode so they do not trigger network requests. [PR #531](https://github.com/apollographql/react-apollo/pull/531)

Expand Down
2 changes: 1 addition & 1 deletion src/browser.ts
Expand Up @@ -6,5 +6,5 @@ export { default as graphql, withApollo, InjectedGraphQLProps } from './graphql'
export { compose } from 'redux';

// re-exports of close dependencies.
export { default as ApolloClient, createNetworkInterface } from 'apollo-client';
export { default as ApolloClient, createNetworkInterface, createBatchingNetworkInterface } from 'apollo-client';
export { default as gql } from 'graphql-tag';
2 changes: 1 addition & 1 deletion src/index.ts
Expand Up @@ -2,5 +2,5 @@ export * from './browser';

export { getDataFromTree, renderToStringWithData } from './server';

export { default as ApolloClient, createNetworkInterface } from 'apollo-client';
export { default as ApolloClient, createNetworkInterface, createBatchingNetworkInterface } from 'apollo-client';
export { default as gql } from 'graphql-tag';

0 comments on commit a5c5ce1

Please sign in to comment.