From 99b25fc5b2e93078351b090c4f50adf2bba1cb48 Mon Sep 17 00:00:00 2001 From: Vaugen Wakeling Date: Fri, 27 Oct 2023 17:21:16 +0100 Subject: [PATCH] feat: Remove unneeded formatting --- .../src/utils/importers/postman-collection.js | 26 ++----------------- 1 file changed, 2 insertions(+), 24 deletions(-) diff --git a/packages/bruno-app/src/utils/importers/postman-collection.js b/packages/bruno-app/src/utils/importers/postman-collection.js index d70aac9e..eceafac2 100644 --- a/packages/bruno-app/src/utils/importers/postman-collection.js +++ b/packages/bruno-app/src/utils/importers/postman-collection.js @@ -14,28 +14,6 @@ const readFile = (files) => { }); }; -/** - * - * @param {string} query - * @returns {string} - */ -const parseGraphQLQuery = (query) => { - return query - .replace(/\s+/g, ' ') - .replace(/{ /g, '{') - .replace(/ {/g, '{') - .replace(/ }/g, '}') - .replace(/, /g, ',') - .replace(/ : /g, ': ') - .replace(/\n/g, ''); -}; - -const parseGraphQLVariables = (string) => { - const cleanedString = string.replace(/[\n\t]/g, '').replace(/\\"/g, '"'); - const variables = JSON.stringify(JSON.parse(cleanedString)); - return typeof variables === 'string' ? variables : ''; -}; - const parseGraphQLRequest = (graphqlSource) => { try { let queryResultObject = { @@ -48,11 +26,11 @@ const parseGraphQLRequest = (graphqlSource) => { } if (graphqlSource.hasOwnProperty('variables') && graphqlSource.variables !== '') { - queryResultObject.variables = parseGraphQLVariables(graphqlSource.variables); + queryResultObject.variables = graphqlSource.variables; } if (graphqlSource.hasOwnProperty('query') && graphqlSource.query !== '') { - queryResultObject.query = parseGraphQLQuery(graphqlSource.query); + queryResultObject.query = graphqlSource.query; } return queryResultObject;