User:TweetsFactsAndQueries/Queries/programming languages influenced by Niklaus Wirth (directly or indirectly)

From Wikidata
Jump to navigation Jump to search

Originally posted on Twitter and on Mastodon.

SELECT ?programmingLanguage ?programmingLanguageLabel ?programmingLanguageDescription WITH {
  SELECT DISTINCT * WHERE {
    ?programmingLanguage wdt:P31/wdt:P279* wd:Q9143;
                         (wdt:P737|wdt:P144|wdt:P287)+ wd:Q92604.
  }
} AS %results WHERE {
  INCLUDE %results.
  ?programmingLanguage wikibase:sitelinks ?sitelinks.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?sitelinks) # rough approximation of popularity
Try it!