Consider example2 from the W3C's RDF* specification: https://w3c.github.io/rdf-star/cg-spec/editors_draft.html
@prefix : <http://www.example.org/> .
:employee38
:familyName "Smith" ;
:jobTitle "Assistant Designer" {| :accordingTo :employee22 |} .
# this is equivalent to:
#
# :employee38
# :familyName "Smith" ;
# :jobTitle "Assistant Designer" .
# << :employee38 :jobTitle "Assistant Designer" >> :accordingTo :employee22 .
But when I tried in GraphDB, it didn't support the former syntax, and the latter did. Whether graphdb does not support syntax like {|... |} ?
Currently GraphDB currently doesn't support syntax like {|..|}. We've adopted the embedded triples approach, but it's something we think should think of for the future release.