Type alias ArangoErrorResponse

ArangoErrorResponse: {
    code?: number;
    error: true;
    errorMessage: string;
    errorNum: number;
}

Interface representing an ArangoDB error response.

Type declaration

  • Optional code?: number

    Intended response status code as provided in the response body.

  • error: true

    Indicates that the request resulted in an error.

  • errorMessage: string

    Error message as provided in the response body.

  • errorNum: number

    ArangoDB error code as provided in the response body.

    See the ArangoDB error documentation for more information.