You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"query": "\n SELECT e.id, e.display_name, e.category_id, e.created_at, e.hidden,\n e.moderated, e.updated_at,\n COALESCE(\n (SELECT array_agg(t.tag_id) FROM entity_tags t WHERE t.entity_id = e.id), \n array[]::uuid[]\n ) AS \"tags!\"\n FROM entities e\n WHERE NOT e.moderated\n ORDER BY created_at\n ",