You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Item notes are broken, for all classifications (exemple).
DESCRIBE queries do not return JSON as expected in the code (here).
Is it a Yasgui issue?
Regarding the docs, not sure it's possible to obtain JSON from DESCRIBE.
I tried to add headers, unsuccesful.
A way to fix is to switch query, from var query = "PREFIX skos:<http://www.w3.org/2004/02/skos/core#> DESCRIBE <" + itemURI + ">"; to var query = "SELECT * WHERE { <" + itemURI + "> ?predicate ?object }"; but seems better to fix the DESCRIBE query issue.
The text was updated successfully, but these errors were encountered:
Item notes are broken, for all classifications (exemple).
DESCRIBE
queries do not return JSON as expected in the code (here).Is it a Yasgui issue?
Regarding the docs, not sure it's possible to obtain JSON from DESCRIBE.
I tried to add headers, unsuccesful.
A way to fix is to switch query, from
var query = "PREFIX skos:<http://www.w3.org/2004/02/skos/core#> DESCRIBE <" + itemURI + ">";
tovar query = "SELECT * WHERE { <" + itemURI + "> ?predicate ?object }";
but seems better to fix the DESCRIBE query issue.The text was updated successfully, but these errors were encountered: