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
e.g.
(datatype-uri 10) ;; => #object[java.net.URI 0x13fb0262 "http://www.w3.org/2001/XMLSchema#integer"]
Which is wrong, but if you serialise the same object (a clojure long) you get:
"11"^^<http://www.w3.org/2001/XMLSchema#long>
which is what datatype-uri should return.
datatype-uri
Ideally the serialisation mechanism would also be built in terms of datatype-uri
The text was updated successfully, but these errors were encountered:
grafter/src/grafter_2/rdf/protocols.cljc
Lines 352 to 354 in 7c1f618
Sorry, something went wrong.
Fix issue #93 return correct datatype-uri for Longs
22804eb
Fix another issue related to #93 with ints
b532dc7
No branches or pull requests
e.g.
Which is wrong, but if you serialise the same object (a clojure long) you get:
which is what
datatype-uri
should return.Ideally the serialisation mechanism would also be built in terms of
datatype-uri
The text was updated successfully, but these errors were encountered: