管理者メモのエクスポートは可能ですか?

データエクスプローラーのクエリ結果をCSVファイル(またはJSON)としてエクスポートできます。

Analyzing Moderation and Flagging Activity Reports で共有されたクエリを調整し、期間ではなく特定のユーザーに関連付けられたすべてのノートを返すようにしました。また、元のクエリからほとんどの列を削除しました。あなたのケースでは、ノートの作成者を含めるべきではないと考えているためです。

-- [params]
-- user_id :user_id


WITH user_notes AS (

    SELECT 
        REPLACE(key, 'notes:', '')::int AS user_id,
        notes.value->>'raw' AS user_note
    FROM plugin_store_rows,
    LATERAL json_array_elements(value::json) notes
    WHERE plugin_name = 'user_notes'
    ORDER BY 2 DESC 
)

SELECT un.user_note
FROM user_notes un
JOIN users u ON u.id = un.user_id
WHERE un.user_id = :user_id