No result found on delete

2019-05-14 10:07发布

I have the following delete statement:

delete {?s ?p ?o} {<http://www.example.org/test/unit213> ?p ?o.
        ?s ?p ?o}

The URI http://www.example.org/test/unit213 is valid, since I get on select, among others,

<http://www.example.org/test/unit213>   rdf:type <http://www.example.org/test/unit>

Still, I get the following result:

No result

Can anyone tell me why?

标签: sparql
1条回答
We Are One
2楼-- · 2019-05-14 10:21

That's probably correct, SPARQL Update operations aren't supposed to return any results.

By the way, I would discourage that style of Update without the WHERE keyword, it's very easy to misread.

- Steve

查看更多
登录 后发表回答