query-51dd2d4f0231571aba2cd293189d3c90

rq turtle/ttl

SPARQL - ermittelt alle Items im Land(P17) Deutschland=Q183 mit deutschem WikiVoyage-Artikel

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# deutsche Wikivoyage - Artikel im Land Deutschland (=Q183) oder Frankreich=Q142
# und deren Koordiante, damit die Darstellung als Karte möglich ist 
#defaultView:Map
SELECT ?item ?itemLabel ?article ?coordinate WHERE {
  ?item wdt:P17 wd:Q183 ;  # Land (Q183=Deutschland, Q142=Frankreich, etc.)  
    wdt:P625 ?coordinate .
  ?article schema:about ?item ;
    schema:isPartOf <https://de.wikivoyage.org/> .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article"):::projected v2("?coordinate"):::projected v1("?item"):::projected c10(["#91;AUTO_LANGUAGE#93;,de"]):::literal c6([https://de.wikivoyage.org/]):::iri c8(["bd:serviceParam"]):::iri c2(["wd:Q183"]):::iri v1 --"wdt:P17"--> c2 v1 --"wdt:P625"--> v2 v3 --"schema:about"--> v1 v3 --"schema:isPartOf"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end