-
-
Notifications
You must be signed in to change notification settings - Fork 273
Closed
Labels
Description
Description
Hi there :)
I think theres a missing type in the "Additional graphql usage hints" section in the docs:
class OperationExceptionExtractor extends ExceptionCauseExtractor<T> { @override ExceptionCause? cause(T error) { return ExceptionCause(error.linkException, error.originalStackTrace); } }it seems that
T
should beOperationException
insteadclass OperationExceptionExtractor extends ExceptionCauseExtractor<OperationException> { @override ExceptionCause? cause(OperationException error) { return ExceptionCause(error.linkException, error.originalStackTrace); } }
Originally reported at ueman/dart-packages#4
Metadata
Metadata
Assignees
Labels
Projects
Status
Backlog