Forgot a single sparql query

This commit is contained in:
Jan Philipp Timme 2017-11-20 20:18:46 +01:00
parent aa45ce0a78
commit 06e26d7753
1 changed files with 12 additions and 0 deletions

View File

@ -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 .
}