query-8a08da1834b1fa526cf5b3d2314a2c0e
Denkmale of the Bundesländer Denkmalliste currently in wikidata
SELECT ?Denkmal ?DenkmalLabel ?property ?propertyLabel ?jurisdiction ?jurisdictionLabel ?coord
WITH {
SELECT ?property ?propertyLabel ?jurisdiction ?jurisdictionLabel ?wdt WHERE {
?property a wikibase:Property;
wdt:P31 wd:Q18618628;
wdt:P17 wd:Q183;
wikibase:directClaim ?wdt.
OPTIONAL { ?property wdt:P1001 ?jurisdiction. }
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?property rdfs:label ?propertyLabel.
?jurisdiction rdfs:label ?jurisdictionLabel.
}
}
} AS %properties
WHERE {
INCLUDE %properties.
?Denkmal ?wdt ?id.
OPTIONAL { ?Denkmal wdt:P625 ?coord. }
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de".
?Denkmal rdfs:label ?DenkmalLabel.
}
}
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Denkmale of the Bundesländer Denkmalliste currently in wikidata
SELECT ?Denkmal ?DenkmalLabel ?property ?propertyLabel ?jurisdiction ?jurisdictionLabel ?coord
WHERE {
{
SELECT ?property ?propertyLabel ?jurisdiction ?jurisdictionLabel ?wdt WHERE {
?property a wikibase:Property;
wdt:P31 wd:Q18618628;
wdt:P17 wd:Q183;
wikibase:directClaim ?wdt.
OPTIONAL { ?property wdt:P1001 ?jurisdiction. }
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?property rdfs:label ?propertyLabel.
?jurisdiction rdfs:label ?jurisdictionLabel.
}
}
}
?Denkmal ?wdt ?id.
OPTIONAL { ?Denkmal wdt:P625 ?coord. }
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de".
?Denkmal rdfs:label ?DenkmalLabel.
}
}