Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我担心这是一个简单的问题。. . 有人能告诉我 sparql 是什么来删除所有特定类型的资源吗?不仅仅是单个三元组,而是一整套资源。
谢谢你
听起来您想删除所有具有某些类的三元组资源。尝试这个 delete {?s ?p ?o} where {?s a :ClassToDelete; ?p ?o}
delete {?s ?p ?o} where {?s a :ClassToDelete; ?p ?o}