New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gatsby-source-notion-database

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gatsby-source-notion-database - npm Package Compare versions

Comparing version 0.4.8 to 0.4.9

2

package.json
{
"name": "gatsby-source-notion-database",
"version": "0.4.8",
"version": "0.4.9",
"description": "Load data from Notion's database",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -75,4 +75,4 @@ const getPageHtml = require('./getPageHtml')

case 'relation':
res = itemData[property]
resFk[`${property}___NODE`] = res.filter(i => i).map(i => createNodeId(i.id))
res = itemData[property].filter(i => i && i.id) // fix undefine relations
resFk[`${property}___NODE`] = res.map(i => createNodeId(i.id))
break

@@ -79,0 +79,0 @@ default:

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc