ExtendedError is an error that can provide extra data in an error response.
| 992 | |
| 993 | // ExtendedError is an error that can provide extra data in an error response. |
| 994 | type ExtendedError interface { |
| 995 | error |
| 996 | Extensions() map[string]any |
| 997 | } |
| 998 | |
| 999 | // Exec implements graphql.ExecutableSchema. |
| 1000 | func (s *Server) Exec(ctx1 context.Context) graphql.ResponseHandler { |
no outgoing calls
no test coverage detected