Skip to content

Instantly share code, notes, and snippets.

@aswinzz
Created January 25, 2019 19:03
Show Gist options
  • Save aswinzz/dedb479ff91c6403cf7fef73004860e0 to your computer and use it in GitHub Desktop.
Save aswinzz/dedb479ff91c6403cf7fef73004860e0 to your computer and use it in GitHub Desktop.
import { withData } from 'next-apollo'
import { HttpLink } from 'apollo-link-http'
const config = {
link: new HttpLink({
uri: 'https://data.<cluster_name>.hasura-app.io/v1alpha1/graphql',
headers: {
'Authorization': `Bearer <token>`,
'X-Hasura-Role': 'admin'
},
})
}
export default withData(config)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment