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
Given
@prefix ex: <http://example.org/> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . ex:alice ex:name "Alice" ; ex:age "25"^^xsd:integer . ex:bob ex:name "Bob" ; ex:age "25"^^xsd:integer . ex:charlie ex:name "Charlie" ; ex:age "25"^^xsd:integer . ex:dave ex:name "Dave" ; ex:age "25"^^xsd:integer .
running the following query
PREFIX ex: <http://example.org/> select ?name ?age where { ?person ex:name ?name . OPTIONAL{?person ex:age ?age.} }
gives the following expected result
But executing the same query on this input:
@prefix ex: <http://example.org/> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . ex:alice ex:name "Alice" . # ex:age "25"^^xsd:integer . ex:bob ex:name "Bob" ; ex:age "25"^^xsd:integer . ex:charlie ex:name "Charlie" ; ex:age "25"^^xsd:integer . ex:dave ex:name "Dave" ; ex:age "25"^^xsd:integer .
give this result:
with this data result:
"Alice" "Bob";"25" "Charlie";"25" "Dave";"25"
The text was updated successfully, but these errors were encountered:
That's interesting. Investigating...
Sorry, something went wrong.
SPARQL results table now includes all result columns (fixes issue #14)
dfb4a18
I did something silly when creating the array of variables that's used to populate the columns. This is now fixed and will be in the next release.
Great! Thanks
No branches or pull requests
Given
running the following query
gives the following expected result
But executing the same query on this input:
give this result:
with this data result:
The text was updated successfully, but these errors were encountered: