我有一个运行(fuseki-server --mem /ds
)的Fuseki服务器,其数据集位于路径/ ds。到目前为止,我可以将新模型上传到该数据集并对其执行查询。当我浏览到http://localhost:3030/ds/
时,它具有模型的所有三元组(如预期):
<http://localhost:3030/ds/person/5>
a foaf:Person ;
foaf:name "Borys" .
<http://localhost:3030/ds/person/6>
a foaf:Person ;
foaf:name "Andy" .
我的问题是:是否可以将此模型的某些部分上传到Fuseki服务器中的自定义路径?例如,一种浏览到<http://localhost:3030/ds/person/5>
并仅获取以下三元组的方法。
<http://localhost:3030/ds/person/5>
a foaf:Person ;
foaf:name "Borys" .
我可能有些困惑,但是查询单个实例很有趣:
SELECT ?p ?o
WHERE { <http://localhost:3030/ds/person/5> ?p ?o }
到目前为止,我最接近该解决方案的是为每个人创建命名图。