query-d5a0ba09e9f135f2530db66851175c61

rq turtle/ttl

Koordinate aus Hauptverwaltung

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select ?item ?itemLabel  ?hauptverwaltung {
  ?item wdt:P159 wd:Q1731.  
  ?item p:P159  ?hauptverwaltung.

  # so ähnlich müsste der Zugriff aussehen, versteh es aber nicht genau
  #?item p:P1733 [ ps:P1733 ?steam_ID ; prov:wasDerivedFrom [pr:P143 wd:Q17013880 ] ].

  # Beispiel 2 mit koordinate
  #  ?item 
  #       p:P159 [
  #         psv:P625 [
  #           wikibase:geoLatitude ?lat ;
  #           wikibase:geoLongitude ?lon ;
  #         ] ;
  #         ps:P625 ?coord
  #       ]

  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?hauptverwaltung"):::projected v1("?item"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q1731"]):::iri c7(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal v1 --"p:direct/P159"--> c2 v1 --"p:P159"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end