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 47 lines 1.1 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT u.did, u.deactivated_at, u.takedown_ref, r.repo_root_cid, r.repo_rev\n FROM repos r\n JOIN users u ON r.user_id = u.id\n WHERE u.did > $1\n ORDER BY u.did ASC\n LIMIT $2", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "did", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "deactivated_at", 14 "type_info": "Timestamptz" 15 }, 16 { 17 "ordinal": 2, 18 "name": "takedown_ref", 19 "type_info": "Text" 20 }, 21 { 22 "ordinal": 3, 23 "name": "repo_root_cid", 24 "type_info": "Text" 25 }, 26 { 27 "ordinal": 4, 28 "name": "repo_rev", 29 "type_info": "Text" 30 } 31 ], 32 "parameters": { 33 "Left": [ 34 "Text", 35 "Int8" 36 ] 37 }, 38 "nullable": [ 39 false, 40 true, 41 true, 42 false, 43 true 44 ] 45 }, 46 "hash": "21972fb9b0f6048feb7659779fd1a42b477e79a01890bc11ea5357b474123ea3" 47}