3

私のグラフには、次のアサーションがあります

  @prefix :     <http://www.example.org/~joe/contact.rdf#> .
  @prefix foaf: <http://xmlns.com/foaf/0.1/> .
  @prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

  :joesmith a foaf:Person ;
        foaf:givenname "Joe" ;
        foaf:family_name "Smith" ;
        foaf:homepage <http://www.example.org/~joe/> ;
        foaf:mbox <mailto:joe.smith@example.org> .

グラフを GraphDB にロードしました。

GraphDB のビジュアル グラフを にポイントすると:joesmith、すべてのトリプルが表示されますが、このグラフが表示されます

ここに画像の説明を入力

foaf:givennameグラフにfoaf:family_nameは表示されませんが、ノードの詳細タブにあり、問題ありません。

代わりに、ノードhttp://www.example.org/~joe/は に接続されていません:joesmith。に属する明示的なアサーションがあるため、かなり配線されているようです:joesmith

これはバグですか、それともデータの問題ですか?

4

3 に答える 3