dbpedia-sparql-client
A promisified DBpedia SPARQL client that keeps it simple.
Install
npm install dbpedia-sparql-client
Note:
Requires fetch when running in a browser. If fetch is not available, install a fetch polyfill
Use
ES2015
;const query = `SELECT DISTINCT ?Concept WHERE {[] a ?Concept} LIMIT 10`; dps // optional, defaults to 10000 // or asXml() ;
ES5
var dps = default;var query = 'SELECT DISTINCT ?Concept WHERE {[] a ?Concept} LIMIT 10'; dps // optional, defaults to 10000 // or asXml() ;
License
MIT