User:Frog23

From Wikidata
Jump to navigation Jump to search

currently working on:

(feel free to help)


Useful Links[edit]


Code Snippet Dump[edit]

The following query uses these:

#fix problems like english alias "Šentjernej" of https://www.wikidata.org/w/index.php?title=Q1016812&oldid=963018947
# currently always gets a timeout, TODO: Fix
SELECT DISTINCT ?item ?itemLabel ?itemLabelProblem ?lang
WHERE
{
    ?item rdfs:label ?itemLabelProblem .
	FILTER(CONTAINS(?itemLabelProblem, '&#')) .
    BIND (lang(?itemLabelProblem) as ?lang)
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}LIMIT 100