This repository was archived by the owner on Dec 19, 2023. It is now read-only.
This repository was archived by the owner on Dec 19, 2023. It is now read-only.
GraphQLErrorHandler not working after updating from 6.0.1 to 7.0.1 #390
Closed
Description
I updated my project from 6.0.1 to 7.0.1 (which makes me renaming some imports from com.coxautodev.graphql.tools.*
to graphql.kickstart.tools.*
by the way).
Now my GraphQLErrorHandler
doesn't work, the default one (DefaultGraphQLErrorHandler
) is used instead.
Here is how it looks like :
@Component
public class MyGraphQLErrorHandler implements GraphQLErrorHandler {
@Override
public List<GraphQLError> processErrors(List<GraphQLError> errors) {
// This code is never called
}
}
Any suggestion ?