Shopify-Node (Added product resource) (#822)

* Add Products support to Shopify node

*  Improvements

Co-authored-by: Yonatan Rosemarin <yonatan.r@billrun.com>
This commit is contained in:
Ricardo Espinoza
2020-08-10 08:43:38 -04:00
committed by GitHub
parent 8baea56ac5
commit 520a456105
4 changed files with 959 additions and 1 deletions

View File

@@ -34,6 +34,9 @@ export async function shopifyApiRequest(this: IHookFunctions | IExecuteFunctions
body,
json: true
};
console.log(options);
if (Object.keys(option).length !== 0) {
Object.assign(options, option);
}