query-5de9a52608ccd3abc716803b91877ce9
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. #art Q483501 visart Q3391743 /wdt:P279*
?item wdt:P31 wd:Q5.
?article schema:about ?item ; schema:isPartOf <https://en.wikipedia.org/> ; schema:name ?page_titleEN .
OPTIONAL {?item wdt:P21 ?gender.}
OPTIONAL {?item wdt:P569 ?dob.}
}
ORDER BY DESC(?item)
# LIMIT 50
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
LIMIT 10000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article")
v5("?dob"):::projected
v4("?gender"):::projected
v1("?item"):::projected
v3("?page_titleEN")
a1((" "))
c3(["wd:Q3391743"]):::iri
c15(["en"]):::literal
c8([https://en.wikipedia.org/]):::iri
c13(["bd:serviceParam"]):::iri
c5(["wd:Q5"]):::iri
v1 --"wdt:P106"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P31"--> c5
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c8
v2 --"schema:name"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P21".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P569".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c13 --"wikibase:language"--> c15
end