Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fetch-sparql-endpoint

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fetch-sparql-endpoint - npm Package Compare versions

Comparing version 4.0.0 to 4.1.0

4

lib/SparqlEndpointFetcher.js

@@ -48,3 +48,3 @@ "use strict";

getQueryType(query) {
const parsedQuery = new sparqljs_1.Parser().parse(query);
const parsedQuery = new sparqljs_1.Parser({ sparqlStar: true }).parse(query);
return parsedQuery.type === 'query'

@@ -62,3 +62,3 @@ ? (parsedQuery.queryType === 'DESCRIBE' ? 'CONSTRUCT' : parsedQuery.queryType) : "UNKNOWN";

getUpdateTypes(query) {
const parsedQuery = new sparqljs_1.Parser().parse(query);
const parsedQuery = new sparqljs_1.Parser({ sparqlStar: true }).parse(query);
if (parsedQuery.type === 'update') {

@@ -65,0 +65,0 @@ const operations = {};

{
"name": "fetch-sparql-endpoint",
"version": "4.0.0",
"version": "4.1.0",
"description": "A simple, lightweight module to send queries to SPARQL endpoints and retrieve their results in a streaming fashion.",

@@ -5,0 +5,0 @@ "keywords": [

Sorry, the diff of this file is not supported yet

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