Ad
How To Add Headers To HttpLink In React Apollo
I wanted to enter token into my graphql queries. Where I have to put my auth token?
Here is my code in apollo.js:
import { withData } from 'next-apollo'
import { HttpLink } from 'apollo-link-http'
export const config = {
link: new HttpLink({
uri: 'http://localhost:8000/graphql/', // Server URL (must be absolute)
opts: {
credentials: 'include', // Additional fetch() options like `credentials` or `headers`
}
})
}
export default withData(config)
That's how I make queries:
const MYJOBS = gql`
{
myJobs {
role {
name
}
school {
name
}
}
}
`
<Query query={MYJOBS}>
Ad
Answer
Finally, my friend suggested adding context
to Query
and it worked!
<Query
query={ME}
context={{
headers: {
authorization: JWT ${localStorage.getItem('token')}
}
}} >
Ad
source: stackoverflow.com
Related Questions
- → Import statement and Babel
- → should I choose reactjs+f7 or f7+vue.js?
- → Uncaught TypeError: Cannot read property '__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED' of undefined
- → .tsx webpack compile fails: Unexpected token <
- → React-router: Passing props to children
- → ListView.DataSource looping data for React Native
- → React Native with visual studio 2015 IDE
- → Can't test submit handler in React component
- → React + Flux - How to avoid global variable
- → Webpack, React & Babel, not rendering DOM
- → How do I determine if a new ReactJS session and/or Browser session has started?
- → Alt @decorators in React-Native
- → How to dynamically add class to parent div of focused input field?
Ad