query-84bd70bd34207cae354f2cf18698c271
people with archives at Ohio University, graduated from Ohio University, and their occupation
SELECT ?person ?personLabel ?occupationLabel WHERE { ?person wdt:P485 wd:Q78901428 . #archives at Alden Library ?person wdt:P69 wd:Q1075339 . #educated at Ohio University ?person wdt:P106 ?occupation . SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } }
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#>
#people with archives at Ohio University, graduated from Ohio University, and their occupation
SELECT ?person ?personLabel ?occupationLabel
WHERE
{
?person wdt:P485 wd:Q78901428 . #archives at Alden Library
?person wdt:P69 wd:Q1075339 . #educated at Ohio University
?person wdt:P106 ?occupation .
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;
v2("?occupation")
v1("?person"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q78901428"]):::iri
c9(["en"]):::literal
c4(["wd:Q1075339"]):::iri
v1 --"wdt:P485"--> c2
v1 --"wdt:P69"--> c4
v1 --"wdt:P106"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end