I am trying to send a "PATCH" request using Helidon WebClient. How can this be achieved? Is it possible?
I've made requests using other protocols with no problem since there are functions for GET, POST, PUT, and DELETE requests, but I can't find one for PATCH.
WebClient wc = ...;
// GET request
wc.get().request(MyClass.class);
// POST request
wc.post().submit(somePayload, MyClass.class);
// PATCH request
// ???