Forgot a single sparql query
This commit is contained in:
parent
aa45ce0a78
commit
06e26d7753
|
@ -41,3 +41,15 @@ WHERE {
|
||||||
?console rev:hasReview ?anyReview .
|
?console rev:hasReview ?anyReview .
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Construct triples for something different
|
||||||
|
# Map CEO to consoles
|
||||||
|
CONSTRUCT {
|
||||||
|
?ceo :isRelatedToConsole ?console .
|
||||||
|
}
|
||||||
|
WHERE {
|
||||||
|
?console rdf:type :GameConsole .
|
||||||
|
?console :madeBy ?org .
|
||||||
|
?org :ceo ?ceo .
|
||||||
|
?ceo rdf:type foaf:Person .
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue