UnexpectedExtensions
Type Alias: UnexpectedExtensions
UnexpectedExtensions:
object
Defined in: src/utilities/TalawaGraphQLError.ts:198
When an error that doesn't fit one of the error types listed above occurs. One example would be a database request failure.
Type declaration
code
code:
"unexpected"
Example
throw new TalawaGraphQLError({
extensions: {
code: "unexpected",
},
});