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

semantic-graphql

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

semantic-graphql - npm Package Compare versions

Comparing version 0.5.0 to 0.5.1

5

CHANGELOG.md
# Changelog
# 0.5.1
**Bug fixes:**
- Bug on `owl:inverseOf` inference that broke the feature in some cases.
# 0.5.0

@@ -4,0 +9,0 @@

4

package.json
{
"name": "semantic-graphql",
"version": "0.5.0",
"version": "0.5.1",
"description": "Create GraphQL schemas from RDF-based ontologies",

@@ -41,3 +41,3 @@ "main": "index.js",

"dependencies": {
"n3": "^0.8.4"
"n3": "^0.8.5"
},

@@ -44,0 +44,0 @@ "peerDependencies": {

@@ -14,3 +14,3 @@ const { owlInverseOf, _owlInverseOf, rdfsDomain, _rdfsSubClassOf } = require('../constants');

// If inverseProperties exists, we can use them to retrieve missing remote data
if (!g[iri].shouldNeverUseInverseOf && ([iri][owlInverseOf] || g[iri][_owlInverseOf])) {
if (!g[iri].shouldNeverUseInverseOf && (g[iri][owlInverseOf] || g[iri][_owlInverseOf])) {
const extendedRanges = new Set();

@@ -17,0 +17,0 @@ const inverseProperties = new Set();

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