tselikin

Results 2 comments of tselikin

We have code examples here: https://github.com/phpclassic/php-shopify/issues/241#issuecomment-1059005042

1. Create shopify resource 2. Pass it to custom function getAllResourceItems. Example: ``` $this->existingCollections = $this->getAllResourceItems($this->shopify->CustomCollection()); $this->existingProducts = $this->getAllResourceItems($this->shopify->Product()); ``` ``` private function getAllResourceItems(PHPShopify\ShopifyResource $resource): array { $result = [];...