Dagger NodeJS SDK
common/errors.GraphQLRequestError
This error originates from the dagger engine. It means that some error was thrown and sent back via GraphQL.
Hierarchy
-
↳
GraphQLRequestError
Properties
cause
Optional
cause: Error
The original error, which caused the DaggerSDKError.
Inherited from
code
code: "D100"
The dagger specific error code. Use this to identify dagger errors programmatically.
Overrides
message
message: string
Inherited from
name
name: "GraphQLRequestError"
The name of the dagger error.
Overrides
requestContext
requestContext: GraphQLRequestContext
The query and variables, which caused the error.
response
response: GraphQLResponse
the GraphQL response containing the error.
stack
Optional
stack: string
Inherited from
Methods
printStackTrace
printStackTrace(): void
Pretty prints the error
Returns
void