apollo-client-browser

1.9.0 • Public • Published

apollo-client-browser

A browser-ready version of apollo-client: demo

<script src="https://unpkg.com/apollo-client-browser@1.7.0"></script>
 
<script>
const apolloClient = new Apollo.lib.ApolloClient({
  networkInterface: Apollo.lib.createNetworkInterface({
    // Edit on https://launchpad.graphql.com/nnnwvmq07
    uri: 'https://nnnwvmq07.lp.gql.zone/graphql',
    transportBatching: true,
  }),
  connectToDevTools: true,
})
 
const POSTS_QUERY = Apollo.gql`
{
  posts {
    id
    title
    author {
      id
      name
    }
  }
}
`
</script> 

See apollo-client for more info.

Readme

Keywords

Package Sidebar

Install

npm i apollo-client-browser

Weekly Downloads

176

Version

1.9.0

License

ISC

Last publish

Collaborators

  • akryum