query-b2d1789671a94f61892050e1d9af526d
PNSMurthyRotideypoc41352
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?starLabel ?radius WHERE {
?star wdt:P31 wd:Q523.
?star p:P2120/psv:P2120 ?radiusStatement.
?radiusStatement wikibase:quantityUnit wd:Q48440.
?radiusStatement wikibase:quantityAmount ?radius.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?radius)
LIMIT 10000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?radius"):::projected
v3("?radiusStatement")
v2("?star")
a1((" "))
c2(["wd:Q523"]):::iri
c6(["wd:Q48440"]):::iri
c9(["bd:serviceParam"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"p:direct/P31"--> c2
v2 --"p:P2120"--> a1
a1 --"p:statement/value/P2120"--> v3
v3 --"wikibase:quantityUnit"--> c6
v3 --"wikibase:quantityAmount"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end