query-470c8c07a2c43e4b4545094bbf849f31
humans with archives at an institution SELECT ?item ?itemLabel ?institutionLabel WHERE { ?item wdt:P485 ?institution . #archives at an institution ?item wdt:P31 wd:Q5 . #instance of a human 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#>
#humans with archives at an institution
SELECT ?item ?itemLabel ?institutionLabel
WHERE
{
?item wdt:P485 ?institution . #archives at an institution
?item wdt:P31 wd:Q5 . #instance of a human
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("?institution")
v1("?item"):::projected
c5(["bd:serviceParam"]):::iri
c3(["wd:Q5"]):::iri
c7(["en"]):::literal
v1 --"wdt:P485"--> v2
v1 --"wdt:P31"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end