【发布时间】:2021-06-04 10:17:32
【问题描述】:
考虑 W3C 的 RDF* 规范中的示例 2: 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 .
但是当我在GraphDB中尝试时,它不支持前一种语法,而后者支持。 graphdb 是否不支持 {|... |} 之类的语法?
【问题讨论】:
-
鉴于语法仍在变化,我怀疑任何 SPARQL 引擎每次都会适应这些变化并等到规范稳定,甚至是推荐或 RDF 1.2 的一部分