We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bundle.rdfstore.create(function(err, store) { store.load("text/n3", "<#s> <#p> <#o> . <#o> <#a> <#p1> . <#o> <#b> <#p2> .", function(err, loadedTriples) { store.execute("select * where { ?s ?p ?o . ?o <#a> ?a ; <#b> ?b . }", function(err, graph) { console.log(err); console.log(graph); }) }) })
However, the following SPARQL query, where ?o is inlined, produces an error:
?o
Bundle.rdfstore.create(function(err, store) { store.load("text/n3", "<#s> <#p> <#o> . <#o> <#a> <#p1> . <#o> <#b> <#p2> .", function(err, loadedTriples) { store.execute("select * where { ?s ?p [<#a> ?a ; <#b> ?b] . }", function(err, graph) { console.log(err); console.log(graph); }) }) })
The error is super ugly:
TypeError: callback is not a function
If this syntax is not supported, it should at least show a better error message.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
However, the following SPARQL query, where
?o
is inlined, produces an error:The error is super ugly:
If this syntax is not supported, it should at least show a better error message.
The text was updated successfully, but these errors were encountered: