async-postgres icon indicating copy to clipboard operation
async-postgres copied to clipboard

Feature add, product get by sku.

Open LiamKarlMitchell opened this issue 4 years ago • 0 comments

magento2.addMethods('products', function (restClient) {
        var module = {};
        module.get = function (sku) {
            return restClient.get('/products/'+sku);
        }
        return module;
    }
)

LiamKarlMitchell avatar Jun 18 '20 22:06 LiamKarlMitchell