query-3c058a83147ff7745269065ded4014c6
Öffentliche Ämter mit Ordnungszahl SELECT ?p ?pLabel ?amt ?amtLabel ?ord WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?p wdt:P1080 wd:Q81738. ?p wdt:P39 ?amt. OPTIONAL { ?p p:P39 ?o. ?o pq:P1545 ?ord. }
}
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Öffentliche Ämter mit Ordnungszahl
SELECT ?p ?pLabel ?amt ?amtLabel ?ord WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?p wdt:P1080 wd:Q81738.
?p wdt:P39 ?amt.
OPTIONAL { ?p p:P39 ?o.
?o pq:P1545 ?ord.
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?amt"):::projected
v3("?o")
v4("?ord"):::projected
v1("?p"):::projected
c6(["wd:Q81738"]):::iri
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"p:direct/P1080"--> c6
v1 --"p:direct/P39"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."p:P39".-> v3
v3 --"p:qualifier/P1545"--> v4
end