INNER CODE UNIT · JavaScript
graphqlRequestImpl
graphql-community/koa-graphql · resources/gen-changelog.js:147
function graphqlRequestImpl(query, variables, cb) {
const resultCB = typeof variables === 'function' ? variables : cb;
const req = https.request('https://api.github.com/graphql', {
method: 'POST',
headers: {
Authorization: 'bearer ' + GH_TOKEN,
'Content-Type': 'application/json',
'User-Agent': 'gen-changelog',
},
});
req.on('response', (res) => {
let responseBody = '';
res.setEncoding('utf8');
res.on('data', (d) => (responseBody += d));
res.on('error', (error) => resultCB(error));