query-61a82a2858f9d3fcabc8513028ef14b9
title: Alden Library archival collections on Wikidata
SELECT DISTINCT ?archivalcollection ?archivalcollectionLabel ?inventorynumber ?startDate ?endDate ?volumeasquantity
WHERE
{
?archivalcollection wdt:P31 wd:Q9388534; # Instance of archival collection
wdt:P195 wd:Q78901428. # in the collection of Alden Library
OPTIONAL{?archivalcollection wdt:P217 ?inventorynumber .}
OPTIONAL{?archivalcollection wdt:P580 ?startDate .}
OPTIONAL{?archivalcollection wdt:P582 ?endDate .}
OPTIONAL{?archivalcollection wdt:P2234 ?volumeasquantity .}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?archivalcollection
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#>
#title: Alden Library archival collections on Wikidata
SELECT DISTINCT ?archivalcollection ?archivalcollectionLabel ?inventorynumber ?startDate ?endDate ?volumeasquantity
WHERE
{
?archivalcollection wdt:P31 wd:Q9388534; # Instance of archival collection
wdt:P195 wd:Q78901428. # in the collection of Alden Library
OPTIONAL{?archivalcollection wdt:P217 ?inventorynumber .}
OPTIONAL{?archivalcollection wdt:P580 ?startDate .}
OPTIONAL{?archivalcollection wdt:P582 ?endDate .}
OPTIONAL{?archivalcollection wdt:P2234 ?volumeasquantity .}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?archivalcollection
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?archivalcollection"):::projected
v4("?endDate"):::projected
v2("?inventorynumber"):::projected
v3("?startDate"):::projected
v5("?volumeasquantity"):::projected
c10(["bd:serviceParam"]):::iri
c4(["wd:Q78901428"]):::iri
c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q9388534"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P195"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P217".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P580".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P582".-> v4
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P2234".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end