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.
我想检查该图是否存在于我的 Fuseki 服务器中,如果存在,它应该返回一条消息,例如
图存在
您可以使用 ASK 查询来执行此操作。例如,要检查命名图http://example.org/graph1是否存在,您可以这样做:
http://example.org/graph1
ASK WHERE { GRAPH <http://example.org/graph1> { ?s ?p ?o } }
true如果存在则返回,false否则返回。
true
false