Skip to content

Instantly share code, notes, and snippets.

@rhanka
Last active February 21, 2021 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rhanka/527f9ec2459836f3934cbb71dce71840 to your computer and use it in GitHub Desktop.
Save rhanka/527f9ec2459836f3934cbb71dce71840 to your computer and use it in GitHub Desktop.
wikidata dead french people
select ?person ?personLabel ?firstnameLabel ?lastnameLabel ?birthdateLabel ?birthplaceLabel ?citizenshipLabel ?diedLabel where {
?person wdt:P27 wd:Q142.
?person wdt:P734 ?lastname.
?person wdt:P735 ?firstname.
?person wdt:P569 ?birthdate.
?person wdt:P27 ?citizenship.
?person wdt:P19 ?birthplace.
?person wdt:P570 ?died;
FILTER((?died >= "1970-01-01T00:00:00Z"^^xsd:dateTime))
service wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment