Damian O'Dea

Results 2 issues of Damian O'Dea

In Fetch.java/send(...) ObjectMapper is invoked with writeValueAsString() and the string is immediately converted to bytes: String requestParams = mapper.writeValueAsString(request); byte[] postData = requestParams.getBytes(); This could be replaced by byte[] postData...

I'm using the nodes client to perform an introspection query (based upon one I found that is used by GraphiQL). Using the response from that I am attempting to generate...