Closed benjaminaaron closed 1 year ago
Ohh, it's base64 encoded! I just decoded it correctly to:
<<<http://dev.de/default#Projects> <http://dev.de/default#hasProject> <http://dev.de/default#AkteX>>>
👍
The underlying SPARQL results parsers of this library do already support RDF-star and SPARQL-star as of recently. So if your querying from an engine that adheres to the RDF-star spec, then this lib should be able to handle it.
It looks like rdf4j uses a non-standard serialization approach for nested triples, so this library will not be compatible with it unfortunately.
I see, thanks. Surprising that the GraphDB engine doesn't support this yet. Maybe they will in a future release.
When fetching statements about statements (RDF-star), they appear like this:
In the GraphDB the respective triple looks like this:
My code to fetch the bindings is the following:
Is there a way to map this long identifier in
urn:rdf4j:triple
to a triple? Like a hash-sum or something like this 🤔