gatsby-source-notion-database
Advanced tools
Comparing version 0.6.7 to 0.6.8
@@ -51,3 +51,3 @@ const Notabase = require("notabase") | ||
}) | ||
console.log(_dbMap, cacheTable) | ||
// console.log(_dbMap, cacheTable) | ||
let db = await nb.fetchAll(_dbMap) | ||
@@ -54,0 +54,0 @@ await Promise.all(Object.entries(db).map(async (i) => { |
{ | ||
"name": "gatsby-source-notion-database", | ||
"version": "0.6.7", | ||
"version": "0.6.8", | ||
"description": "Load data from Notion's database", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -54,3 +54,3 @@ const getPageHtml = require('./getPageHtml') | ||
created_time: itemData._raw.created_time, | ||
_raw: itemData._raw | ||
_raw: JSON.stringify(itemData._raw) | ||
} | ||
@@ -104,3 +104,3 @@ let resFk = {} | ||
} catch (error) { | ||
console.log(error) | ||
// console.log(error) | ||
console.log(`get failed at ${itemData.id}`) | ||
@@ -107,0 +107,0 @@ } |
12828