Jump to content

Module:Library works

From Marxist Wiki

Documentation for this module may be created at Module:Library works/doc

local p = {}

function p.main(frame) 
	EntityID = mw.wikibase.getEntityIdForCurrentPage()
	Author = mw.wikibase.getEntity(EntityID)
	Works = Author:getAllStatements('works')
	return Works
end
return p