gatsby-source-notion-churnotion 1.1.16 → 1.1.17
Sign up to get free protection for your applications and to get access to all the features.
package/dist/api/getPages.js
CHANGED
@@ -56,7 +56,7 @@ const getPages = async ({ databaseId, reporter, getCache, actions, createNode, c
|
|
56
56
|
books: [],
|
57
57
|
};
|
58
58
|
await createNode(categoryNode);
|
59
|
-
const bookRelations = page.properties?.
|
59
|
+
const bookRelations = page.properties?.book?.relation || null;
|
60
60
|
if (bookRelations) {
|
61
61
|
bookRelations.forEach((relation) => {
|
62
62
|
const bookId = relation.id;
|
@@ -43,6 +43,7 @@ const createSchemaCustomization = ({ actions }) => {
|
|
43
43
|
churnotions: [${constants_1.NODE_TYPE.Post}] @link(by: "category", from: "id")
|
44
44
|
url: String!
|
45
45
|
books: [${constants_1.NODE_TYPE.Book}] @link(by: "id")
|
46
|
+
childrenNBook: [${constants_1.NODE_TYPE.Book}] @link(by: "book_category", from: "id")
|
46
47
|
}
|
47
48
|
|
48
49
|
type ${constants_1.NODE_TYPE.Book} implements Node {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "gatsby-source-notion-churnotion",
|
3
3
|
"description": "Gatsby plugin that can connect with One Notion Database RECURSIVELY using official API",
|
4
|
-
"version": "1.1.
|
4
|
+
"version": "1.1.17",
|
5
5
|
"skipLibCheck": true,
|
6
6
|
"license": "0BSD",
|
7
7
|
"main": "./dist/gatsby-node.js",
|