My **/graphql** route is protected by **JWT token**, so every HTTP request needs to set: ``` headers: { Authorization: 'Bearer ' + token } ``` To get through the authentication middleware and hit **/graphql**. How to manage this authentication step when using **graphiql** ? graphiql is so convenient, it's a pity to not use it :( thanks for any suggestion!