UNPKG

@graphql-tools/executor-http

Version:

A set of utils for faster development of GraphQL tools

27 lines (26 loc) 1.12 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.prepareGETUrl = void 0; const graphql_1 = require("graphql"); function prepareGETUrl({ baseUrl = '', query, variables, operationName, extensions, }) { const dummyHostname = 'https://dummyhostname.com'; const validUrl = baseUrl.startsWith('http') ? baseUrl : (baseUrl === null || baseUrl === void 0 ? void 0 : baseUrl.startsWith('/')) ? `${dummyHostname}${baseUrl}` : `${dummyHostname}/${baseUrl}`; const urlObj = new URL(validUrl); urlObj.searchParams.set('query', (0, graphql_1.stripIgnoredCharacters)(query)); if (variables && Object.keys(variables).length > 0) { urlObj.searchParams.set('variables', JSON.stringify(variables)); } if (operationName) { urlObj.searchParams.set('operationName', operationName); } if (extensions) { urlObj.searchParams.set('extensions', JSON.stringify(extensions)); } const finalUrl = urlObj.toString().replace(dummyHostname, ''); return finalUrl; } exports.prepareGETUrl = prepareGETUrl;