From 066d22c75db81ebbcd9c23c8939ba551fc4c1ef3 Mon Sep 17 00:00:00 2001 From: Rostyk <34774987+rostyk-kanafotskyy@users.noreply.github.com> Date: Mon, 11 May 2020 17:30:03 +0300 Subject: [PATCH] fix: force release (#54) --- gatsby-node.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gatsby-node.js b/gatsby-node.js index 0e7f674..2dbd572 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -236,6 +236,7 @@ exports.sourceNodes = async ( for (const product of productsArray) { const response = await moltin.get(`products/${product.id}`) const responseProduct = response.data + responseProduct.relationships.children = product.relationships.children products.push(responseProduct) }