Daniel Kaviyani
Daniel Kaviyani
@Akryum Is there no solution to this problem? How can we manage errors? Especially when we have 401 errors I have to redirect the user to the login page
> Yes, same here... > Some have found a workaround to be able to intercept the graphql errors? hi I handled it using apollo-link-error in apollo-config.js source: https://v4.apollo.vuejs.org/guide-composable/error-handling.html#network-errors
> > > Yes, same here... > > > Some have found a workaround to be able to intercept the graphql errors? > > > > > > hi >...
@SebasEC96 move your code into the function before return ``` export default function ({ redirect }) { const link = onError(({ graphQLErrors, networkError }) => { if (graphQLErrors) { graphQLErrors.map(({...