mirror of
https://github.com/Azure/setup-helm.git
synced 2025-09-08 21:16:34 +00:00
Adding graphql query to fetch latest helm release of specified type
This commit is contained in:
15
node_modules/@octokit/graphql/dist-src/error.js
generated
vendored
Normal file
15
node_modules/@octokit/graphql/dist-src/error.js
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
export class GraphqlError extends Error {
|
||||
constructor(request, response) {
|
||||
const message = response.data.errors[0].message;
|
||||
super(message);
|
||||
Object.assign(this, response.data);
|
||||
Object.assign(this, { headers: response.headers });
|
||||
this.name = "GraphqlError";
|
||||
this.request = request;
|
||||
// Maintains proper stack trace (only available on V8)
|
||||
/* istanbul ignore next */
|
||||
if (Error.captureStackTrace) {
|
||||
Error.captureStackTrace(this, this.constructor);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user