forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollection.js
37 lines (30 loc) · 878 Bytes
/
collection.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 Collection instance.
*
* @param {Shopify} shopify Reference to the Shopify instance
* @constructor
* @public
*/
function Collection(shopify) {
this.shopify = shopify;
this.name = 'collections';
this.key = 'collection';
}
assign(Collection.prototype, pick(base, ['get', 'buildUrl']));
/**
* Retrieves a list of products belonging to a collection.
*
* @param {Number} id Collection ID
* @param {Object} [params] Query parameters
* @return {Promise} Promise that resolves with the result
* @public
*/
Collection.prototype.products = function products(id, params) {
const url = this.buildUrl(`${id}/products`, params);
return this.shopify.request(url, 'GET', 'products');
};
module.exports = Collection;