Documentation for this module may be created at Module:Sandbox/sandbox/doc

Code

local p = {}

function p.fetchItem(frame)
	local qid = frame.args[1] or ''
	local proplist = ''
	if mw.text.trim(qid or '') ~= '' then
		local entity = mw.wikibase.getEntity(qid)
	end
	return 'None'
end

return p