我是SPARQL/图形数据库的新手,正在尝试将一些数据插入到图形数据库的新命名图形中。
INSERT
{ GRAPH graphs:new_graph { ?code groups:memberOfGroup graphs:personGroup } } where
{?code a obib:CRID .
?code obib:denotes ?person .
?person a obib:homoSapien .}
当我运行此查询时,图形"new_graph"已创建,但它不包含任何数据。如果我使用 SELECT 语句运行相同的查询,它会返回它应该返回的数据,因此问题可能出在查询的 INSERT 部分。
这个问题已经解决,但为了它,它应该有效,你能提供一组这样的数据吗(如果我理解你的意图(:
创建测试数据后,使用两个资源(一个作者和一本引用该作者的书(创建一个图形<http://example/shelf_A>
:
PREFIX dcterms: <http://purl.org/dc/terms/>
INSERT DATA {
# create graph <http://example/shelf_A> if it doesn't exist
GRAPH <http://example/shelf_A> {
# add triple (http://example/author, name, author)
<http://example/author> dcterms:name "author" .
# add triples (http://example/book, title, book)
# and (http://example/book, author, http://example/author)
<http://example/book> dcterms:title "book" ;
dcterms:author <http://example/author> .
}
}
我们用引用该作者的书籍创建第二个图表,并声明它们在上一张图表中:
PREFIX dcterms: <http://purl.org/dc/terms/>
INSERT
{
# create graph is it doesn't exist
GRAPH <http://example/shelf_B> {
# add the triple (?bood, provenance, http://example/shelf_A)
# ?book comes from the request below
?book dcterms:provenance <http://example/shelf_A>
}
}
WHERE
{
# select all books (?book) which have an author
# and this author is named "author"
?book dcterms:author ?author .
?author dcterms:name "author"
}
结果是两个图表:
图表http://example/shelf_A
:
http://example/author dcterms:name author
http://example/book dcterms:author http://example/author
http://example/book dcterms:title book
图表http://example/shelf_B
:
http://example/book dcterms:provenance <http://example/shelf_A>