UNPKG

startgg-helper-node

Version:

A set of functions and classes useful to communicate with the start.gg API.

11 lines (9 loc) 288 B
import { GraphQLClient } from "graphql-request" const endpoint = "https://www.start.gg/api/-/gql" const headers = { "client-version": "21", 'Content-Type': 'application/json' } export function makeClient(){ return new GraphQLClient(endpoint, {headers: headers}); }