|
let queryStylesSKUsPhotos = (productID) => { |
|
let queryRelatedProducts = (productID) => { |
|
let queryPhotos = (productID) => { |
|
let querySKUs = (productID) => { |
If using let and const, try to be consistent. Since we're never reassigning these functions, they can be constants.
Products-API/models/queries.js
Line 64 in 0b24ac9
Products-API/models/queries.js
Line 56 in 0b24ac9
Products-API/models/queries.js
Line 48 in 0b24ac9
Products-API/models/queries.js
Line 40 in 0b24ac9
If using let and const, try to be consistent. Since we're never reassigning these functions, they can be constants.