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
Version: 7.2.14
I encounter a problem that literal values accidentally converted to URIs if there is an URI with the same value.
Here is an example for reproducibility.
INSERT { <https://mrdata.usgs.gov/mrds> <https://example.com/uri> "https://mrdata.usgs.gov/mrds" . }
SELECT ?s ?p ?o WHERE { ?s ?p ?o . VALUES ?s { <https://mrdata.usgs.gov/mrds> } }
This is the results in JSON:
{ "head": { "link": [], "vars": [ "s", "p", "o" ] }, "results": { "distinct": false, "ordered": true, "bindings": [ { "s": { "type": "uri", "value": "https://mrdata.usgs.gov/mrds" }, "p": { "type": "uri", "value": "https://example.com/uri" }, "o": { "type": "uri", "value": "https://mrdata.usgs.gov/mrds" } } ] } }
The text was updated successfully, but these errors were encountered:
We are looking into this ...
Sorry, something went wrong.
No branches or pull requests
Version: 7.2.14
I encounter a problem that literal values accidentally converted to URIs if there is an URI with the same value.
Here is an example for reproducibility.
INSERT { <https://mrdata.usgs.gov/mrds> <https://example.com/uri> "https://mrdata.usgs.gov/mrds" . }
.SELECT ?s ?p ?o WHERE { ?s ?p ?o . VALUES ?s { <https://mrdata.usgs.gov/mrds> } }
This is the results in JSON:
The text was updated successfully, but these errors were encountered: