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
Currently has the rettype of Collection.get_relations() default value of the rettype="t", meaning that it only returns a (s,p,o) tuple. That makes it easy to miss the datatype for literals. Changing the default to rettype="T" will include the datatype and probably be safer.
The only issue is that it will create a backward incompatibility, so we should at least update the minor version number when doing it.
The text was updated successfully, but these errors were encountered:
Currently has the
rettype
ofCollection.get_relations()
default value of therettype="t"
, meaning that it only returns a (s,p,o) tuple. That makes it easy to miss the datatype for literals. Changing the default torettype="T"
will include the datatype and probably be safer.The only issue is that it will create a backward incompatibility, so we should at least update the minor version number when doing it.
The text was updated successfully, but these errors were encountered: