query-33b10913db4b64355e8593940ca73168

rq turtle/ttl

Propertiesinstance of (P31)sex or gender (P21)educated at (P69)

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 ?person ?personLabel ?personDescription ?englishwp WHERE {
?person wdt:P31 wd:Q5; # human
        wdt:P21 wd:Q6581072; # sex or gender: female
        wdt:P69 wd:Q82606. # Educated at Pembroke College, Oxford
OPTIONAL {?englishwp schema:about ?person; schema:isPartOf <https://en.wikipedia.org/> } # English Wikipedia page
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en". }
} ORDER BY ?personLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?englishwp"):::projected v2("?person"):::projected v1("?personLabel"):::projected c4(["wd:Q6581072"]):::iri c13(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal c6(["wd:Q82606"]):::iri c9([https://en.wikipedia.org/]):::iri c11(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P21"--> c4 v2 --"wdt:P69"--> c6 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."schema:about".-> v2 v3 --"schema:isPartOf"--> c9 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end