R/client.R
changed.
Other files ignored by Codecov
tests/testthat/test-GraphqlClient.R
has changed.
220 | 220 | #' @param ... curl options passed on to [crul::verb-POST] |
|
221 | 221 | #' @return character string of response, if successful |
|
222 | 222 | exec = function(query, variables, encoding = "UTF-8", ...) { |
|
223 | - | parsed_query <- gsub("\n", "", private$handle_query(query)) |
|
223 | + | parsed_query <- private$handle_query(query) |
|
224 | 224 | body <- list(query = parsed_query) |
|
225 | 225 | if (private$has_variables(body$query)) { |
|
226 | 226 | if (missing(variables)) |
Files | Coverage |
---|---|
R | 49.54% |
Project Totals (4 files) | 49.54% |