forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollection-listing.js
37 lines (30 loc) · 960 Bytes
/
collection-listing.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
'use strict';
const assign = require('lodash/assign');
const pick = require('lodash/pick');
const base = require('../mixins/base');
/**
* Creates a CollectionListing instance.
*
* @param {Shopify} shopify Reference to the Shopify instance
* @constructor
* @public
*/
function CollectionListing(shopify) {
this.shopify = shopify;
this.name = 'collection_listings';
this.key = 'collection_listing';
}
assign(CollectionListing.prototype, pick(base, ['get', 'list', 'buildUrl']));
/**
* Retrieves product IDs that are published to a particular collection.
*
* @param {Number} id Collection ID
* @param {Object} [params] Query parameters
* @return {Promise} Promise that resolves with the result
* @public
*/
CollectionListing.prototype.productIds = function productIds(id, params) {
const url = this.buildUrl(`${id}/product_ids`, params);
return this.shopify.request(url, 'GET', 'product_ids');
};
module.exports = CollectionListing;