query-c7fcfcab5be7de0fd48ec8c9c05f7817
items with property Pxxxx, its object, ordered by # of sitelinks SELECT ?item ?itemLabel ?value ?sl { { SELECT * { ?item wdt:P461 ?value ; wikibase:sitelinks ?sl } ORDER BY DESC(?sl) LIMIT 2000 } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY DESC(?sl) ?item
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# items with property Pxxxx, its object, ordered by # of sitelinks
SELECT ?item ?itemLabel ?value ?sl
{
{
SELECT *
{
?item wdt:P461 ?value ; wikibase:sitelinks ?sl
}
ORDER BY DESC(?sl)
LIMIT 2000
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?sl) ?item
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?sl"):::projected
v3("?value"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P461"--> v3
v2 --"wikibase:sitelinks"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end