query-585463de7862c9cc57cee374ff9c88ef

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 bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?sitelink ?article WHERE {
  ?item wdt:P31/wdt:P279* wd:Q62447.
  SERVICE wikibase:label {bd:serviceParam wikibase:language "fr" .  }
  ?sitelink ^schema:name ?article .
  ?article schema:about ?item ;
          schema:isPartOf <https://fr.wikipedia.org/> .
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article"):::projected v1("?item"):::projected v3("?sitelink"):::projected a1((" ")) c5(["bd:serviceParam"]):::iri c11([https://fr.wikipedia.org/]):::iri c7(["fr"]):::literal c3(["wd:Q62447"]):::iri v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end v2 --"schema:name"--> v3 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c11