rdfstore-js
rdfstore-js copied to clipboard
JS RDF store with SPARQL support
The following query only has one value as result, but there should be three values (`:Jim`, `:Mark` and `:Ian`): ``` js rdfstore.create(function(err, store) { store.load("text/n3", "@prefix : . :Bob :brothers...
``` js Bundle.rdfstore.create(function(err, store) { store.load("text/n3", " . . .", function(err, loadedTriples) { store.execute("select * where { ?s ?p ?o . ?o ?a ; ?b . }", function(err, graph) {...
Had an issue when handling query results because the types of RDF terms are called "token" rather than "type" which is specified here: https://www.w3.org/TR/sparql11-results-json/#select-bindings
Hello, I am trying to implement the [integrity constraints](http://www.w3.org/TR/vocab-data-cube/#wf-rules) from the RDF Data Cube Vocabulary and I encountered some strange ASK behaviours. If you want to reproduce the behaviour, I...
Greetings, Antonio! I have been exploring almost the entire code and I would like to know if you are planning on, at least, documenting the Quad Backend API in order...
Hi, version: 0.9.6 with PR #99 applied (using node.js) I currently try to load an external file via LOAD query; although the query seems to succeed, the store seems to...
I know the code says that that this function should never execute, but I feel that it should still work correctly if it does. This pull request fixes the call...
Add new nextTick implementation to Utils class This is apparently much faster in some workloads. It yielded a small improvement in performance in my application. I feel that this is...
https://github.com/brianmcd/contextify/issues/180#issuecomment-142148860
having some trouble parsing a turtle file with relative IRIs. here is an example file. https://dl.dropboxusercontent.com/u/363467/ds000001/RESULTS/Group/Con1/nidm_001/test2.ttl the prov:atLocation triples with relative IRIs should expand out as: https://dl.dropboxusercontent.com/u/363467/ds000001/RESULTS/Group/Con1/nidm_001/Contrast.nii.gz however, the parser...