Jesper Joergensen
Jesper Joergensen
Do you find that you need to set different batch sizes all the time? Or would it be acceptable to set the batch size on the Config object?
Can you give some pseudo code samples of how you would like it to work?
I am leaning heavily towards providing this in ApiConfig and I am looking to understand whether that would be unreasonably burdensome
I am always wary of increasing the surface area of the API since it might make it harder for me to support the library in the future as a pure...
I don't think this is supported by REST API. A quick Google brings up workarounds like [this one](https://www.forcetalks.com/salesforce-topic/how-to-convert-lead-to-account-using-rest-api-in-salesforce/). If you think there's a way to do it in REST API,...
It’s an Apex class so it’s not using REST API. I believe an Apex solution is being proposed because there is no way to do it via REST API directly....
force-rest-api supports calling custom endpoints like that one and reusing the autentication and marshalling logic. See the plain get/put/post/delete methods on ForceApi. On Mon, Dec 4, 2017 at 10:33 AM...
I'll take a look at it. The raw crud methods are relatively new and less battle tested. There might be some issues with them. On Mon, Dec 4, 2017 at...
Oh, I didn't see your updated response. Yes, you will have to deploy the Apex class first.
I see. When I did the raw crud methods, I reused `apiBase()` which appends `/services/data/`. I wonder if Apex REST is the only type of endpoint that doesn't need a...