Trig doesn't use qnames for graph identifiers · Issue #330 · RDFLib/rdflib (original) (raw)
So i have this TriG file:
@prefix ns: <http://example.org/> .
ns:i = { ns:s ns:p ns:o . }
I parse it into a Dataset and then serialize it into a new TriG file. The source becomes:
@prefix ns: <http://example.org/> .
<http://example.org/i> = { ns:s ns:p ns:o . }
I'm not sure is that a TriG parser/serializer problem, or Dataset's problem, as Dataset doesn't use qnames for the named graph.