query-bdd86528dacef339b3e6c0f402b43e0c
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?iot ?iotLabel WHERE {
?iot p:P31 ?statement.
?statement ps:P31 wd:Q26934845.
MINUS { ?statement wikibase:rank wikibase:DeprecatedRank. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?iot"):::projected
v2("?statement")
c7(["bd:serviceParam"]):::iri
c5(["wikibase:DeprecatedRank"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["wd:Q26934845"]):::iri
v1 --"p:P31"--> v2
v2 --"p:statement/P31"--> c3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wikibase:rank"--> c5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end