Select the types of activity you want to include in your feed.
1ALTER TABLE documents ADD COLUMN indexed boolean NOT NULL DEFAULT true; 2 3CREATE INDEX idx_documents_ranking 4ON documents (sort_date DESC) 5INCLUDE (uri, bsky_like_count, recommend_count) 6WHERE indexed = true;