query-4b97b3b555dd6ff99f525ce4f2e607d1
Instance of ) at SrBrahma (UTC).contribs • talk (02:32, 26 апреля 2019 comment was added byunsignedThe preceding – ). Q634Earth and all the other planets, should have the "Instance Of" "Planet" (Direct class is redundant. They are indirect instances already:
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#>
SELECT distinct ?planet ?planetLabel ?dist WHERE {
?planet wdt:P31/wdt:P279* wd:Q634.
MINUS {?planet wdt:P31 wd:Q44559.}
?planet wdt:P2583 ?dist.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?dist
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?dist"):::projected
v2("?planet"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c3(["wd:Q634"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c4(["wd:Q44559"]):::iri
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P31"--> c4
end
v2 --"wdt:P2583"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end