query-fa48630716b6d97a3ca5c2fa230ed1cf
Alle Subinstanzen von Verkehrsinfrastrukut
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?s ?desc_en ?desc_de
WHERE
{
?s wdt:P279 wd:Q376799 . # Transport Infrastructure
OPTIONAL {
?s rdfs:label ?desc_en filter (lang(?desc_en) = "en").
}
OPTIONAL {
?s rdfs:label ?desc_de filter (lang(?desc_de) = "de").
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?desc_de"):::projected
v2("?desc_en"):::projected
v3("?s"):::projected
c4(["wd:Q376799"]):::iri
v3 --"wdt:P279"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v1
end