如何通过 SPARQL 端点远程执行 Insert/Delete?
How to do Insert/Delete remotely through a SPARQL endpoint?
有没有办法通过(INSERT DATA
和 DELETE DATA
)通过 SPARQL 端点远程更新数据?我知道我们可以使用 SERVICE
进行分布式和联合查询,但是当我尝试使用 SERVICE
远程更新数据时出现错误:
INSERT DATA
{SERVICE <SparqlEndpoint1> {
subject, predicate, object
}}
非常感谢您的帮助。
Federated SPARQL SERVICE
clause only supports SELECT
operations. SERVICE
clauses cannot be used for INSERT
, UPDATE
, DELETE
, or other SPARQL Update operations on remote endpoints. See the SPARQL 1.1 grammar 和其他链接文档了解更多详情。
有没有办法通过(INSERT DATA
和 DELETE DATA
)通过 SPARQL 端点远程更新数据?我知道我们可以使用 SERVICE
进行分布式和联合查询,但是当我尝试使用 SERVICE
远程更新数据时出现错误:
INSERT DATA
{SERVICE <SparqlEndpoint1> {
subject, predicate, object
}}
非常感谢您的帮助。
Federated SPARQL SERVICE
clause only supports SELECT
operations. SERVICE
clauses cannot be used for INSERT
, UPDATE
, DELETE
, or other SPARQL Update operations on remote endpoints. See the SPARQL 1.1 grammar 和其他链接文档了解更多详情。