mirror of
https://github.com/ASzc/change-string-case-action.git
synced 2024-11-24 03:03:50 +08:00
24 lines
594 B
JavaScript
24 lines
594 B
JavaScript
import { request } from "@octokit/request";
|
|
import { getUserAgent } from "universal-user-agent";
|
|
import { VERSION } from "./version";
|
|
import { withDefaults } from "./with-defaults";
|
|
const graphql = withDefaults(request, {
|
|
headers: {
|
|
"user-agent": `octokit-graphql.js/${VERSION} ${getUserAgent()}`
|
|
},
|
|
method: "POST",
|
|
url: "/graphql"
|
|
});
|
|
import { GraphqlResponseError } from "./error";
|
|
function withCustomRequest(customRequest) {
|
|
return withDefaults(customRequest, {
|
|
method: "POST",
|
|
url: "/graphql"
|
|
});
|
|
}
|
|
export {
|
|
GraphqlResponseError,
|
|
graphql,
|
|
withCustomRequest
|
|
};
|