query-68a28a435100e63221397f09487b82ef
402 (auxiliary) WFM Dictionary No.
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 bd: <http://www.bigdata.com/rdf#>
#Spiral galaxies, redshifts and distance from us.
#defaultView:Dimensions
SELECT ?itemLabel ?_redshift ?_distance_from_Earth
WHERE {
?item wdt:P31 wd:Q2488;
wdt:P1090 ?_redshift;
wdt:P2583 ?_distance_from_Earth;
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?_distance_from_Earth"):::projected
v2("?_redshift"):::projected
v1("?item")
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
c2(["wd:Q2488"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P1090"--> v2
v1 --"wdt:P2583"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end