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 52 lines 1.1 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT u.id, u.did, u.backup_enabled, u.deactivated_at, r.repo_root_cid, r.repo_rev\n FROM users u\n JOIN repos r ON r.user_id = u.id\n WHERE u.did = $1\n ", 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": "backup_enabled", 19 "type_info": "Bool" 20 }, 21 { 22 "ordinal": 3, 23 "name": "deactivated_at", 24 "type_info": "Timestamptz" 25 }, 26 { 27 "ordinal": 4, 28 "name": "repo_root_cid", 29 "type_info": "Text" 30 }, 31 { 32 "ordinal": 5, 33 "name": "repo_rev", 34 "type_info": "Text" 35 } 36 ], 37 "parameters": { 38 "Left": [ 39 "Text" 40 ] 41 }, 42 "nullable": [ 43 false, 44 false, 45 false, 46 true, 47 false, 48 true 49 ] 50 }, 51 "hash": "3043db19db2d0f51d1db6965a3ba0af4a1a4a76cc4ab1cad8395ba6babecc37d" 52}