0

考虑 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 是否不支持 {|... |} 之类的语法?

4

1 回答 1

0

目前 GraphDB 目前不支持像 {|..|} 这样的语法。我们采用了嵌入式三元组方法,但我们认为在未来的版本中应该考虑到这一点。

于 2021-06-04T14:59:56.917 回答