UNPKG

@graphprotocol/graph-cli

Version:

CLI for building for and deploying to The Graph

13 lines (12 loc) 359 B
// eslint-disable-next-line no-restricted-imports import { fetch } from '@whatwg-node/fetch'; import { GRAPH_CLI_SHARED_HEADERS } from './constants.js'; export default function fetchWrapper(input, init) { return fetch(input, { ...init, headers: { ...init?.headers, ...GRAPH_CLI_SHARED_HEADERS, }, }); }