query-93cc015e9c5120bfb488acdd40b16278

rq turtle/ttl

UKNA IDs of people who studied at Oxford and have an English Wikipedia page

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?personLabel ?enwp (URI(CONCAT("https://discovery.nationalarchives.gov.uk/details/c/",?ukna)) AS ?uknalink) WHERE {
?person wdt:P3029 ?ukna.
?person wdt:P69 wd:Q34433.
?enwp schema:about ?person; schema:isPartOf <https://en.wikipedia.org/>
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} ORDER BY ?personLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?enwp"):::projected v2("?person") v1("?personLabel"):::projected v3("?ukna"):::projected v5("?uknalink") c6([https://en.wikipedia.org/]):::iri c8(["bd:serviceParam"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q34433"]):::iri v2 --"wdt:P3029"--> v3 v2 --"wdt:P69"--> c3 v4 --"schema:about"--> v2 v4 --"schema:isPartOf"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind0[/"concat('https://discovery.nationalarchives.gov.uk/details/c/',?ukna)"/] v3 --o bind0 bind0 --as--o v5