query-2347f8f9a5e4c9593190687d3cb21fd2

rq turtle/ttl

items with most statements in Odia wiki SELECT ?item ?itemLabel ?statements WHERE { ?item wikibase:statements ?statements. hint:Prior hint:rangeSafe true. ?article schema:about ?item; schema:isPartOf https://or.wikipedia.org/ . FILTER(?statements >= 80) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY DESC(?statements) LIMIT 123

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# items with most statements in Odia wiki
SELECT ?item ?itemLabel ?statements 
WHERE {
  ?item wikibase:statements ?statements. 
  ?article schema:about ?item;
    schema:isPartOf <https://or.wikipedia.org/> .
  FILTER(?statements >= 80)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?statements)
LIMIT 123

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article") v2("?item"):::projected v1("?statements"):::projected c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c5([https://or.wikipedia.org/]):::iri f0[["?statements >= '80^^xsd:integer'"]] f0 --> v1 v2 --"wikibase:statements"--> v1 v3 --"schema:about"--> v2 v3 --"schema:isPartOf"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end