async-postgres
async-postgres copied to clipboard
Feature add, product get by sku.
magento2.addMethods('products', function (restClient) {
var module = {};
module.get = function (sku) {
return restClient.get('/products/'+sku);
}
return module;
}
)