This repository has been archived by the owner on Nov 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgatsby-node.js
122 lines (110 loc) · 3.65 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
const path = require('path')
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions
/**********************
PRODUCTS
***********************/
let allProducts = []
const productLimitPerQuery = 250;
const getMoreProducts = async function (currentCursor) {
const productsCache = await graphql(`
query getAllProducts($previousProduct: String!, $limit: Int!) {
shopify {
shop {
products(first: $limit, after: $previousProduct) {
edges {
cursor
node {
handle
}
}
pageInfo {
hasNextPage
}
}
}
}
}
`,
{
"previousProduct": currentCursor,
"limit": productLimitPerQuery,
}
)
// add returned paginated products to all products
allProducts = allProducts.concat(productsCache.data.shopify.shop.products.edges)
if (productsCache.data.shopify.shop.products.pageInfo.hasNextPage) {
await getMoreProducts(currentCursor = productsCache.data.shopify.shop.products.edges[productsCache.data.shopify.shop.products.edges.length - 1].cursor)
}
}
const productsCache = await graphql(`
query getAllProducts($limit: Int!) {
shopify {
shop {
products(first: $limit) {
edges {
cursor
node {
handle
}
}
pageInfo {
hasNextPage
}
}
}
}
}
`,
{
"limit": productLimitPerQuery,
}
)
// add returned paginated products to all products
allProducts = allProducts.concat(productsCache.data.shopify.shop.products.edges)
// if there's more products, grab next 250 products
if (productsCache.data.shopify.shop.products.pageInfo.hasNextPage) {
await getMoreProducts(currentCursor = productsCache.data.shopify.shop.products.edges[productsCache.data.shopify.shop.products.edges.length - 1].cursor)
}
allProducts && allProducts.forEach(product => {
createPage({
path: `/products/${product.node.handle}`,
component: path.resolve('./src/templates/product.js'),
context: {
handle: product.node.handle,
},
})
})
/**********************
COLLECTIONS
***********************/
const allCollections = await graphql(`
{
shopify {
shop {
collections(first: 250) {
edges {
node {
handle
}
}
}
}
}
}
`)
allCollections && allCollections.data.shopify.shop.collections.edges.forEach(edge => {
createPage({
path: `/collections/${edge.node.handle}`,
component: path.resolve('./src/templates/collection.js'),
context: {
handle: edge.node.handle,
},
})
})
}