This repository was archived by the owner on Dec 19, 2023. It is now read-only.
5.3.1
Only include exception handlers with return type GraphQLError
All exception handlers were attempted to be included when searching for custom GraphQLError
exception handler methods. This resulted in methods being included that would not return a GraphQLError
but were instead intended to be used by other Spring features. Therefore extended the filter now to only use those methods that actually return a GraphQLError
or subclass.