query-edf730e85dce19616bf77c20b716d0a3

rq turtle/ttl

Quel est l'économiste français le plus connu ?

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 (COUNT(?sitelink) AS ?count) WHERE {
  ?item wdt:P106 wd:Q188094;
    wdt:P27 wd:Q142.
  ?sitelink schema:about ?item.
  FILTER((SUBSTR(STR(?sitelink), 11 , 15 )) = ".wikipedia.org/")
  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}
GROUP BY ?item ?itemLabel
ORDER BY DESC (?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count") v3("?item"):::projected v2("?sitelink"):::projected c10(["bd:serviceParam"]):::iri c5(["wd:Q188094"]):::iri c12(["fr"]):::literal c7(["wd:Q142"]):::iri f0[["substring(str(?sitelink),'11^^xsd:integer','15^^xsd:integer') = '.wikipedia.org/'"]] f0 --> v2 v3 --"wdt:P106"--> c5 v3 --"wdt:P27"--> c7 v2 --"schema:about"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end bind2[/"count(?sitelink)"/] v2 --o bind2 bind2 --as--o v4