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
When fragments are retrieved in JSON-LD, it looks like the hydra:totalItems values are being returned as strings, instead of a number such as xsd:integer.
This does work properly when serialized as Turtle though.
I assume this is because the total item count is typically very large (larger than max int), which makes something internal inside the JSON-LD serialized not accept xsd:integer.
A solution may be to use the datatype xsd:long instead.
When fragments are retrieved in JSON-LD, it looks like the
hydra:totalItems
values are being returned as strings, instead of a number such asxsd:integer
.This does work properly when serialized as Turtle though.
I assume this is because the total item count is typically very large (larger than max int), which makes something internal inside the JSON-LD serialized not accept
xsd:integer
.A solution may be to use the datatype
xsd:long
instead.Example:
curl -H'Accept: application/ld+json' https://query.wikidata.org/bigdata/ldf
The text was updated successfully, but these errors were encountered: