User:TweetsFactsAndQueries/Queries/people born after 1800 whose “name in native language” is in Latin

Originally posted on Twitter and on Mastodon.

SELECT DISTINCT ?person ?personLabel ?personDescription ?name WHERE {
  ?person wdt:P31 wd:Q5;
          wdt:P569 ?dob. hint:Prior hint:rangeSafe true.
  FILTER(?dob >= "1800-00-00"^^xsd:dateTime)
  ?person wdt:P1559 ?name.
  FILTER(LANG(?name) = "la")
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Try it!