query-7143d70ada6b497cfcaf879fbb23261b

rq turtle/ttl

TODO

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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?article ?sitelink
WHERE 
{
  ?item p:P31/ps:P31/wdt:P279* wd:Q515. # city or subclass of city, irrespective of statement rank
  ?item wdt:P17 wd:Q142. # in France
  ?article schema:about ?item ;  # these three lines are the sitelink incantation
    schema:isPartOf <https://fr.wikivoyage.org/> ; 
    schema:name ?sitelink .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,en". } 
} ORDER BY ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article"):::projected v2("?item"):::projected v1("?itemLabel"):::projected v4("?sitelink"):::projected a1((" ")) a2((" ")) c14(["#91;AUTO_LANGUAGE#93;,fr,en"]):::literal c12(["bd:serviceParam"]):::iri c9([https://fr.wikivoyage.org/]):::iri c4(["wd:Q515"]):::iri c6(["wd:Q142"]):::iri v2 --"p:P31"--> a1 a1 --"p:statement/P31"--> a2 a2 --"p:direct/P279"--> c4 v2 --"p:direct/P17"--> c6 v3 --"schema:about"--> v2 v3 --"schema:isPartOf"--> c9 v3 --"schema:name"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c12 --"wikibase:language"--> c14 end