query-df75cfbdebc5b1cfaaa4cd04782c96d4

rq turtle/ttl

Liste des éléments ayant un article Wikivoyage en français avec le pays

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?string ?item ?itemLabel ?country ?countryLabel WHERE {
  ?sitelink schema:about ?item;
    schema:isPartOf <https://fr.wikivoyage.org/>;
    schema:name ?string.
  ?item wdt:P17 ?country.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
ORDER BY (?itemLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?country"):::projected v3("?item"):::projected v1("?itemLabel"):::projected v2("?sitelink") v4("?string"):::projected c7(["bd:serviceParam"]):::iri c3([https://fr.wikivoyage.org/]):::iri c9(["#91;AUTO_LANGUAGE#93;"]):::literal v2 --"schema:about"--> v3 v2 --"schema:isPartOf"--> c3 v2 --"schema:name"--> v4 v3 --"wdt:P17"--> v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end