query-78e51ea32f67894f839ef3b2a94aa0c3

rq turtle/ttl

Performant way to list 100 scholary articles sorted by linkcount Performant way to list 100 scholary articles sorted by linkcount Performant way to list 100 scholary articles sorted by linkcount Façon performante de répertorier 100 articles de recherche classés par nombre de liens Performant way to list 100 scholary articles sorted by linkcount Een goede manier om 100 wetenschappelijke artikelen te vermelden gesorteerd op aantal keren gelinkt Performant way to list 100 scholary articles sorted by linkcount Performant way to list 100 scholary articles sorted by linkcount Performant way to list 100 scholary articles sorted by linkcount Performant way to list 100 scholary articles sorted by linkcount

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select ?item ?itemLabel ?itemDescription ?linkCount where {
   {
  select ?item where {
    ?item wdt:P31 wd:Q13442814.
  } limit 100
}  ?item wikibase:sitelinks ?linkCount.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} order by desc(?linkCount)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?linkCount"):::projected c2(["wd:Q13442814"]):::iri c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P31"--> c2 v2 --"wikibase:sitelinks"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end