File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,13 @@ module.exports = function (source, options) {
1414 code . push ( '// For more information about RapidQL, checkout docs.rapidql.com!' ) ;
1515 code . push ( '' ) ;
1616 code . blank ( ) ;
17- code . push ( '// For more information about RapidQL, checkout docs.rapidql.com!' ) ;
1817 code . push ( "const RapidQL = require('RapidQL');" ) ;
1918 code . push ( 'let rql = new RapidQL({' ) ;
2019 code . push ( '});' ) ;
2120 code . push ( '' ) ;
2221 code . push ( 'rql.query(`{' ) ;
2322 code . push ( ` Http.${ ( source . method || '' ) . toLowerCase ( ) } (` ) ;
24- code . push ( ` url:"${ helpers . quote ( source . fullUrl ) } "` ) ;
23+ code . push ( ` url:"${ source . fullUrl } "` ) ;
2524
2625 if ( source . headers . length ) {
2726 code . push ( ` headers : {\n${ Object . entries ( source . allHeaders ) . map ( ( [ key , val ] ) => `"${ key } ":"${ val } "` ) . join ( ",\n" ) } \n }` ) ;
You can’t perform that action at this time.
0 commit comments