We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff8363e commit 5bd79e8Copy full SHA for 5bd79e8
1 file changed
src/targets/rapidql/rapidql.js
@@ -14,14 +14,13 @@ module.exports = function (source, options) {
14
code.push('// For more information about RapidQL, checkout docs.rapidql.com!');
15
code.push('');
16
code.blank();
17
- code.push('// For more information about RapidQL, checkout docs.rapidql.com!');
18
code.push("const RapidQL = require('RapidQL');");
19
code.push('let rql = new RapidQL({');
20
code.push('});');
21
22
code.push('rql.query(`{');
23
code.push(` Http.${(source.method || '').toLowerCase()}(`);
24
- code.push(` url:"${helpers.quote(source.fullUrl)}"`);
+ code.push(` url:"${source.fullUrl}"`);
25
26
if (source.headers.length) {
27
code.push(` headers : {\n${Object.entries(source.allHeaders).map(([key, val]) => `"${key}":"${val}"`).join(",\n")}\n }`);
0 commit comments