query-57bb39344b4b7e333d2ba7220d7ab4b9
title:Deprecated rank with eventual motivation SELECT ?item ?itemLabel ?gnd ?msLabel WHERE { ?item p:P227 ?st . ?st wikibase:rank wikibase:DeprecatedRank . ?st ps:P227 ?gnd . OPTIONAL { ?st pq:P2241 ?ms . } SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Deprecated rank with eventual motivation
SELECT ?item ?itemLabel ?gnd ?msLabel
WHERE {
?item p:P227 ?st .
?st wikibase:rank wikibase:DeprecatedRank .
?st ps:P227 ?gnd .
OPTIONAL { ?st pq:P2241 ?ms . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
}
Query found at
- https://www.wikidata.org/wiki/User:Ep%C3%ACdosis/Queries
- https://www.wikidata.org/wiki/User:Ep%C3%ACdosis/sandbox
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?gnd"):::projected
v1("?item"):::projected
v4("?ms")
v2("?st")
c7(["bd:serviceParam"]):::iri
c3(["wikibase:DeprecatedRank"]):::iri
c9(["de,en"]):::literal
v1 --"p:P227"--> v2
v2 --"wikibase:rank"--> c3
v2 --"p:statement/P227"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:qualifier/P2241".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end