Skip to content

Instantly share code, notes, and snippets.

View davidsbatista's full-sized avatar
🏗️
building stuff :)

David S. Batista davidsbatista

🏗️
building stuff :)
View GitHub Profile
@davidsbatista
davidsbatista / gist:e0b19d8e1a93ca6f460e57735051cd6f
Last active March 19, 2023 14:00
Get the "known as" for legal entity types in different countries, e.g.: "LLC", "Inc.", "GmbH", "Ldt."
## Full query gives timeout
SELECT ?entity ?entityLabel
WHERE
{
?item_type wdt:P279 wd:Q1269299 . # Item's type is a subclass of type of business entity
?business_entity wdt:P31 ?item_type .
?entity rdfs:label ?entityLabel .
?entity skos:altLabel ?alternativeNames .
FILTER (lang(?alternativeNames) = "de")