query-09c6484723f0f1279501cf9fc0487756
Persons archived at the NDRM archive
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#>
#Persons archived at the NDRM archive
#defaultView:Table
SELECT DISTINCT ?person ?personLabel {
?person wdt:P31 wd:Q5. #P31 = instance of / wd:Q5 = human
?person wdt:P485 wd:Q115296901. #P485 = archives at / wd:Q115296901 = NDRM archive
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ko". }
} ORDER BY ASC(?personLabel)
Query found at
- https://www.wikidata.org/wiki/Wikidata:WikiProject_The_Commemorative_Association_of_the_National_Debt_Redemption_Movement_(NDRM)/Queries
- https://www.wikidata.org/wiki/Wikidata:WikiProject_The_Commemorative_Association_of_the_National_Debt_Redemption_Movement_(NDRM)/Statistics
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?person"):::projected
v1("?personLabel"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c4(["wd:Q115296901"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,ko"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P485"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end