-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
40 lines (37 loc) · 957 Bytes
/
gatsby-node.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
38
39
/* Recordemos que siempre que trabajemos sobre la API de Gatsby vamos a trabajar en NodeJS */
const path = require('path')
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions
const productTemplate = path.resolve(`src/templates/Product.js`)
const result = await graphql(`
query GET_PRODUCTS_BY_PRICE{
allStripePrice {
edges {
node {
id
unit_amount
product {
name
metadata {
description
img
wear
}
}
}
}
}
}
`)
if (result.errors) {
throw result.errors
}
result.data.allStripePrice.edges.forEach(({ node }) => {
createPage({
path: `${node.id}`,
component: productTemplate,
// Obtengo el contexto y lo que le envio es el nodo (cada uno de los productos que vienen de mi query)
context: node
})
})
}