Our Personal Data Server from scratch!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fix/code-quality-in-general 46 lines 1.0 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT u.id, u.did, u.deactivated_at, u.takedown_ref, r.repo_root_cid as \"repo_root_cid?\"\n FROM users u\n LEFT JOIN repos r ON r.user_id = u.id\n WHERE u.did = $1", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Uuid" 10 }, 11 { 12 "ordinal": 1, 13 "name": "did", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "deactivated_at", 19 "type_info": "Timestamptz" 20 }, 21 { 22 "ordinal": 3, 23 "name": "takedown_ref", 24 "type_info": "Text" 25 }, 26 { 27 "ordinal": 4, 28 "name": "repo_root_cid?", 29 "type_info": "Text" 30 } 31 ], 32 "parameters": { 33 "Left": [ 34 "Text" 35 ] 36 }, 37 "nullable": [ 38 false, 39 false, 40 true, 41 true, 42 false 43 ] 44 }, 45 "hash": "7ab8aab10a10c18e0d5a663e67593c0e41a52c2fb0720c9671829faa084c4131" 46}