-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-node.js
43 lines (42 loc) · 988 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
40
41
42
43
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
// Create Recipe nodes from the strapi API
const path = require(`path`);
// Create Recipes dynamically
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions;
const recipeTemplate = path.resolve(`src/templates/recipes.jsx`);
const result = await graphql(`
query {
allStrapiRecipes {
edges {
node {
Title
Body
Tags
Author {
username
}
created_at
id
}
}
}
}
`)
console.log(result.data);
result.data.allStrapiRecipes.edges.forEach(edge => {
let slug = edge.node.Title.replace(/\s+/g, '-').toLowerCase();
createPage({
path: `recipes/${slug}`,
component: recipeTemplate,
context: {
title: edge.node.Title,
id: edge.node.id
},
})
})
}