Documentation for this module may be created at Module:TestWikidata/doc
local p = {} function p.getLabel(frame) local entityId = frame.args[1] or "Q76" -- Default to Barack Obama (Q76) return mw.wikibase.getLabel(entityId) or "Label not found" end return p