Created
October 26, 2024 11:25
Revisions
-
knbknb revised this gist
Oct 26, 2024 . 1 changed file with 16 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1,16 @@ # lists the names of smurfette in all languages that wikidata knows about . # the result should have two columns, "language_label" and "smurfette_name" SELECT ?language_label ?smurfette_name WHERE { wd:Q305405 rdfs:label ?smurfette_name. FILTER(LANG(?smurfette_name) != ""). BIND(LANG(?smurfette_name) AS ?lang). ?language_item wdt:P218 ?lang. SERVICE wikibase:label { bd:serviceParam wikibase:language "en". ?language_item rdfs:label ?language_label. } } ORDER BY ?language_label -
knbknb created this gist
Oct 26, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@