Class: ForbiddenError
Defined in: packages/apollo/src/errors/forbidden.error.ts:20
Error thrown when the user is not authorized to access a resource.
This class was removed in Apollo Server 4.0.0. This implementation provides the same functionality.
Example
@Query()
async adminData(@Context() ctx: MyContext) {
if (!ctx.user.isAdmin) {
throw new ForbiddenError('Admin access required');
}
return this.service.getAdminData();
}Extends
GraphQLError
Accessors
[toStringTag]
Get Signature
get toStringTag: string;Defined in: node_modules/graphql/error/GraphQLError.d.ts:192
Returns the value used by Object.prototype.toString.
Returns
string
The built-in string tag for this object.
Inherited from
GraphQLError.[toStringTag]Constructors
Constructor
new ForbiddenError(message, options?): ForbiddenError;Defined in: packages/apollo/src/errors/forbidden.error.ts:26
Creates a new ForbiddenError.
Parameters
| Parameter | Type | Description |
|---|---|---|
message | string | Error message. |
options? | GraphQLErrorOptions | Additional GraphQL error options. |
Returns
ForbiddenError
Overrides
GraphQLError.constructorMethods
toJSON()
toJSON(): GraphQLFormattedError;Defined in: node_modules/graphql/error/GraphQLError.d.ts:225
Returns the JSON representation used when this object is serialized.
Returns
GraphQLFormattedError
The JSON-serializable representation.
Example
import { GraphQLError } from 'graphql/error';
const error = new GraphQLError('Resolver failed.', {
path: ['viewer', 'name'],
extensions: { code: 'INTERNAL' },
});
error.toJSON(); // => { message: 'Resolver failed.', path: ['viewer', 'name'], extensions: { code: 'INTERNAL' } }Inherited from
GraphQLError.toJSONtoString()
toString(): string;Defined in: node_modules/graphql/error/GraphQLError.d.ts:209
Returns this error as a human-readable message with source locations.
Returns
string
The formatted error string.
Example
import { Source } from 'graphql/language';
import { GraphQLError } from 'graphql/error';
const error = new GraphQLError('Cannot query field "name".', {
source: new Source('{ name }'),
positions: [2],
});
error.toString(); // => 'Cannot query field "name".\n\nGraphQL request:1:3\n1 | { name }\n | ^'Inherited from
GraphQLError.toStringcaptureStackTrace()
Call Signature
static captureStackTrace(targetObject, constructorOpt?): void;Defined in: node_modules/@types/node/globals.d.ts:51
Creates a .stack property on targetObject, which when accessed returns a string representing the location in the code at which Error.captureStackTrace() was called.
const myObject = {};
Error.captureStackTrace(myObject);
myObject.stack; // Similar to `new Error().stack`The first line of the trace will be prefixed with ${myObject.name}: ${myObject.message}.
The optional constructorOpt argument accepts a function. If given, all frames above constructorOpt, including constructorOpt, will be omitted from the generated stack trace.
The constructorOpt argument is useful for hiding implementation details of error generation from the user. For instance:
function a() {
b();
}
function b() {
c();
}
function c() {
// Create an error without stack trace to avoid calculating the stack trace twice.
const { stackTraceLimit } = Error;
Error.stackTraceLimit = 0;
const error = new Error();
Error.stackTraceLimit = stackTraceLimit;
// Capture the stack trace above function b
Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace
throw error;
}
a();Parameters
| Parameter | Type |
|---|---|
targetObject | object |
constructorOpt? | Function |
Returns
void
Inherited from
GraphQLError.captureStackTraceCall Signature
static captureStackTrace(targetObject, constructorOpt?): void;Defined in: node_modules/bun-types/globals.d.ts:1062
Create .stack property on a target object
Parameters
| Parameter | Type |
|---|---|
targetObject | object |
constructorOpt? | Function |
Returns
void
Inherited from
GraphQLError.captureStackTraceisError()
Call Signature
static isError(error): error is Error;Defined in: node_modules/typescript/lib/lib.esnext.error.d.ts:21
Indicates whether the argument provided is a built-in Error instance or not.
Parameters
| Parameter | Type |
|---|---|
error | unknown |
Returns
error is Error
Inherited from
GraphQLError.isErrorCall Signature
static isError(value): value is Error;Defined in: node_modules/bun-types/globals.d.ts:1057
Check if a value is an instance of Error
Parameters
| Parameter | Type | Description |
|---|---|---|
value | unknown | The value to check |
Returns
value is Error
True if the value is an instance of Error, false otherwise
Inherited from
GraphQLError.isErrorprepareStackTrace()
static prepareStackTrace(err, stackTraces): any;Defined in: node_modules/@types/node/globals.d.ts:55
Parameters
| Parameter | Type |
|---|---|
err | Error |
stackTraces | CallSite[] |
Returns
any
See
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Inherited from
GraphQLError.prepareStackTrace