getReportedReviews
Reference
---@return table[] reviews -- Raw review rows flagged as reported, newest first
function getReportedReviews() end Each row includes the review columns plus listing_name for context. A listing owner can report a review from the app; staff then decide whether to remove it with deleteReview.
Usage example
local reported = exports.fd_laptop:getReportedReviews()
for _, review in ipairs(reported) do
print(review.id, review.listing_name, review.rating, review.comment)
end