query-bbc1b4269e561e225913226e3b3d20e2
TODO
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?dob ?gender WHERE
{
{
SELECT ?item WHERE {
?item wdt:P106/wdt:P279* wd:Q3391743.
?article schema:about ?item ; schema:isPartOf <https://en.wikipedia.org/> .
} OFFSET 30000 LIMIT 30000} ?item wdt:P31 wd:Q5.
OPTIONAL {?item wdt:P21 ?gender.}
OPTIONAL {?item wdt:P569 ?dob.}
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("?article")
v4("?dob"):::projected
v3("?gender"):::projected
v1("?item"):::projected
a1((" "))
c3(["wd:Q3391743"]):::iri
c14(["en"]):::literal
c6([https://en.wikipedia.org/]):::iri
c12(["bd:serviceParam"]):::iri
c8(["wd:Q5"]):::iri
v1 --"wdt:P106"--> a1
a1 --"wdt:P279"--> c3
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c6
v1 --"wdt:P31"--> c8
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P21".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P569".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c12 --"wikibase:language"--> c14
end