fbredius/storybook

View on GitHub
scripts/utils/githubClient.ts

Summary

Maintainability
A
0 mins
Test Coverage
import fetch from 'node-fetch';

const GITHUB_API = 'https://api.github.com/graphql';

export const githubClient = (apiKey: string) => {
  return async (query: string, variables?: { [key: string]: any }) => {
    const res = await fetch(GITHUB_API, {
      method: 'POST',
      headers: {
        authorization: `token ${apiKey}`,
      },
      body: JSON.stringify({
        query,
        variables,
      }),
    });

    const result = await res.json();
    const { data, errors } = result;
    if (errors) {
      throw new Error(JSON.stringify(errors[0]));
    }
    return data;
  };
};