21 lines
590 B
Plaintext
21 lines
590 B
Plaintext
PREFIX dbo: <http://dbpedia.org/ontology/>
|
|
PREFIX dbp: <http://dbpedia.org/property/>
|
|
PREFIX res: <http://dbpedia.org/resource/>
|
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
|
SELECT DISTINCT ?uri
|
|
WHERE {
|
|
?uri rdf:type dbo:Automobile .
|
|
{ ?uri dbo:assembly res:Germany . }
|
|
UNION
|
|
{ ?uri dbp:assembly res:Germany . }
|
|
UNION
|
|
{ { ?uri dbo:manufacturer ?x . }
|
|
UNION
|
|
{ ?uri dbp:manufacturer ?x . }
|
|
{ ?x dbo:locationCountry res:Germany . }
|
|
UNION
|
|
{ ?x dbo:location res:Germany . }
|
|
}
|
|
}
|
|
|