query-49d654b3fce160c2d3604266857cc5d5
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
:SELECT ?item ?itemLabel ?description ?image ?legend ?imageDate ?birthdate ?deathdate ?nationality ?sex ?occupation ?article WITH {
: SELECT ?item ?itemLabel ?birthdate WHERE {
: ?item wdt:P31 wd:Q5;
: rdfs:label ?itemLabel;
: wdt:P569 ?birthdate.
: hint:Prior hint:rangeSafe "true"^^xsd:boolean.
: FILTER(("1991-00-00"^^xsd:date <= ?birthdate) && (?birthdate < "1992-00-00"^^xsd:dat))
: FILTER((LANG(?itemLabel)) = "en")
:} } as %i
:WHERE {
: INCLUDE %i
: OPTIONAL { ?item schema:description ?description. FILTER((LANG(?description)) = "en") }
: OPTIONAL { ?item wdt:P734 ?lastname. }
: OPTIONAL { ?item wdt:P570 ?deathdate. }
: OPTIONAL { ?item wdt:P27 ?nationality. }
: OPTIONAL { ?item wdt:P21 ?sex. }
: OPTIONAL { ?item wdt:P106 ?occupation. }
: OPTIONAL {
: ?item p:P18 ?stat.
: ?stat ps:P18 ?image.
: OPTIONAL { ?stat pq:P2096 ?legend. FILTER (langmatches(lang(?legend), "en")) }
: OPTIONAL { ?stat pq:P585 ?imageDate. }
: }
: ?article schema:about ?item;
: schema:isPartOf <https://en.wikipedia.org/>.
:}