rdfstore-js icon indicating copy to clipboard operation
rdfstore-js copied to clipboard

JS RDF store with SPARQL support

Results 71 rdfstore-js issues
Sort by recently updated
recently updated
newest added

I am developing a javascript library and I use rdfstore-js to load a remote graph (http://dbpedia.org/page/Germany), but it does not return any solution, it doesn't even return errors. I also...

GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1

W3C RDFJS CG created through community process a proposal for common RDF interfaces for JavaScript. You can find it in https://github.com/rdfjs/representation-task-force/blob/master/interface-spec.md Many libraries started adopting this interface and providing feedback...

# Query ```sparql PREFIX rdfs: select ?label ?comment from where { ?p ?o . optional { rdfs:label ?label . filter ( (lang(?label) = "") || langmatches(lang(?label), "EN") ) } ....

------------------------------- Having install commands in other phases violates the semantics of the `.travis.yml` configuration. So we have refactored them into the `install` phase. ------------------------------- **Note:** This pull request was generated...

The query engine often redundantly fetches same objects from the lexicon in denormalizeBindings(List). Using a lazy cache for the already fetched items reduces the request time significantly; an exemplar query...

Hi, I have a use case where I'm interested in finding all the sub classes of a class. The only way I think this is possible is with property paths:...

`SELECT * WHERE { }` doesn't match any result. Normally, it should: https://www.w3.org/TR/rdf-sparql-query/#emptyGroupPattern This simple case really doesn't bother me but in consequence, `SELECT * WHERE { { ?s ?p...

This is a minimal-invasive change that effectively makes the execution of filters asynchronous by using promises. The change allows the use of filter (not) exist in any combination with other...