query-e143bc0b3309782f84e4132ce247494b
Items with HASC and end date
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#-----------------------------------------------------
# Items with HASC and end date
#-----------------------------------------------------
#defaultView:Table;Map
SELECT ?hasc ?item ?itemLabel ?countryLabel ?enddate ?continued_by ?continued_byLabel ?coordinate
WHERE
{
?item wdt:P8119 ?hasc . # hasc
?item wdt:P576 ?enddate. # enddate
OPTIONAL { ?item wdt:P1366 ?continued_by. } # continued by
OPTIONAL { ?item wdt:P625 ?coordinate. } # coordinate
OPTIONAL { ?item wdt:P17 ?country. } # country
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de". }
}
order by ?enddate
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?continued_by"):::projected
v5("?coordinate"):::projected
v6("?country")
v1("?enddate"):::projected
v3("?hasc"):::projected
v2("?item"):::projected
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en,de"]):::literal
v2 --"wdt:P8119"--> v3
v2 --"wdt:P576"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P1366".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P625".-> v5
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P17".-> v6
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end