query-f0de1a1bc98934aebb2887b9061ca1a6
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: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . ?member P485:wdt ?person . Q1331248:wd P463:wdt ?member { WHERE ?memberLabel ?personLabel ?person DISTINCT SELECT 2. Return an image grid 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 ?image
WHERE {
?member wdt:P463 wd:Q1331248 .
?person wdt:P485 ?member .
?person wdt:P18 ?image .
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;
v3("?image"):::projected
v1("?member")
v2("?person"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q1331248"]):::iri
c8(["en"]):::literal
v1 --"wdt:P463"--> c2
v2 --"wdt:P485"--> v1
v2 --"wdt:P18"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end