We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a546af7 commit fcbd19eCopy full SHA for fcbd19e
gqlerrors/formatted.go
@@ -47,6 +47,9 @@ func FormatError(err error) FormattedError {
47
if extended, ok := err.(ExtendedError); ok {
48
ret.Extensions = extended.Extensions()
49
}
50
+ if formatted, ok := err.(FormattedError); ok {
51
+ ret.Extensions = formatted.Extensions
52
+ }
53
54
return ret
55
case Error:
0 commit comments