query-59f5b0229ecd19512a368effa39c4f47

rq turtle/ttl

Vrac d'items triés par nombre d'interwikis

SELECT ?item ?itemLabel ?itemDescription ?nombre WHERE { { SELECT ?item (COUNT(?sitelink) AS ?nombre) WHERE { VALUES ?item {wd:Q1362259} ?sitelink schema:about ?item .

} GROUP BY ?item ORDER BY DESC (?nombre) } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr" }
} ORDER BY DESC (?nombre)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Vrac d'items triés par nombre d'interwikis

SELECT ?item ?itemLabel ?itemDescription ?nombre WHERE {
{
  SELECT ?item (COUNT(?sitelink) AS ?nombre) WHERE { 
VALUES ?item {wd:Q1362259} 
  ?sitelink schema:about ?item .

  } GROUP BY ?item ORDER BY DESC (?nombre) 
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr" }  
} ORDER BY DESC (?nombre)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v4("?nombre"):::projected v3("?sitelink") c3(["bd:serviceParam"]):::iri c5(["#91;AUTO_LANGUAGE#93;,fr"]):::literal bind0[/VALUES ?item/] bind0-->v2 bind00(["wd:Q1362259"]) bind00 --> bind0 v3 --"schema:about"--> v2 bind2[/"count(?sitelink)"/] v3 --o bind2 bind2 --as--o v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end