query-479c27910aee0417e820b42984784b62
Five College Consortium1. Return a list of all people whose archival papers are held by an institution that is a member of the Five College Consortium:
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 ?person ?personLabel ?memberLabel
WHERE {
?member wdt:P463 wd:Q1331248 .
?person wdt:P485 ?member .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?member")
v2("?person"):::projected
c5(["bd:serviceParam"]):::iri
c2(["wd:Q1331248"]):::iri
c7(["en"]):::literal
v1 --"wdt:P463"--> c2
v2 --"wdt:P485"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end