Is there any way to call a class in JsForce to get the record count of a specific object (or a list of objects) that would call the endpoint /services/data/vXX.X/limits/recordCount?sObjects= ? (see article below)
Or maybe a way to launch the request directly using JsForce?
let _request = {
url: '/services/data/v51.0/limits/recordCount?sObjects=Account',
method: 'GET'
conn.request(_request, function(err, resp) {
if (err) console.log(err); else console.log(resp);
Of course i will have to handle errors etc...
Thank you !!