Module:User:Kai/sandbox

From The Deadlock Wiki
Revision as of 21:21, 27 August 2026 by Kai (talk | contribs) (Debug where structure and return value (via update-page on MediaWiki MCP Server))
Jump to navigation Jump to search

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

local p = {}

function p.view(frame)
    local q = mw.ext.bucket('feedback')
    q.select('page')
    local w = q.where('status', 'resolved')
    return string.format("q == w: %s\nq.wheres = %s", tostring(q == w), mw.dumpObject(q.wheres))
end

return p