query-8a08da1834b1fa526cf5b3d2314a2c0e

rq turtle/ttl

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

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.
    }  
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?Denkmal"):::projected v9("?DenkmalLabel"):::projected v8("?coord"):::projected v7("?id") v3("?jurisdiction"):::projected v5("?jurisdictionLabel"):::projected v1("?property"):::projected v4("?propertyLabel"):::projected v2("?wdt") c15(["#91;AUTO_LANGUAGE#93;,de"]):::literal c2(["wikibase:Property"]):::iri c10(["bd:serviceParam"]):::iri c4(["wd:Q18618628"]):::iri c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal c6(["wd:Q183"]):::iri v1 --"a"--> c2 v1 --"wdt:P31"--> c4 v1 --"wdt:P17"--> c6 v1 --"wikibase:directClaim"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1001".-> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 v1 --"rdfs:label"--> v4 v3 --"rdfs:label"--> v5 end v6 -->v2--> v7 subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v6 -."wdt:P625".-> v8 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c15 v6 --"rdfs:label"--> v9 end