apollo-client-browser

A browser-ready version of apollo-client


Keywords
apollo, graphql, apollographql
License
ISC
Install
npm install apollo-client-browser@1.9.0

Documentation

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.