Module:YouTubeSubscribers

This is an old revision of this page, as edited by BrokenSegue (talk | contribs) at 00:33, 17 February 2023. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {} 

function p.subCount( frame )
	local qid = frame.args["qid"]
	local e = mw.wikibase.getEntity(qid)
	local chanIds = e:getBestStatements("P2397")
	
    return "hello2" ..  tostring(pairs(chanIds)[0])
end

return p