Sha256: d2e814563000bc1e9e7eb31353be777a7d7ce4e87a9290c35e2439751fed23e2
Contents?: true
Size: 404 Bytes
Versions: 10
Compression:
Stored size: 404 Bytes
Contents
module ShopifyAPI class CollectionListing < Base self.primary_key = :collection_id early_july_pagination_release! def product_ids ProductId.all(params: { collection_id: collection_id }) end class ProductId < ArrayBase self.resource_prefix = 'collection_listings/:collection_id/' early_july_pagination_release! end private_constant :ProductId end end
Version data entries
10 entries across 10 versions & 1 rubygems