Our Personal Data Server from scratch!
0
fork

Configure Feed

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

at fix/small-bugs 34 lines 790 B view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT u.did, u.handle, icu.used_at\n FROM invite_code_uses icu\n JOIN users u ON icu.used_by_user = u.id\n WHERE icu.code = $1\n ORDER BY icu.used_at DESC", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "did", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "handle", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "used_at", 19 "type_info": "Timestamptz" 20 } 21 ], 22 "parameters": { 23 "Left": [ 24 "Text" 25 ] 26 }, 27 "nullable": [ 28 false, 29 false, 30 false 31 ] 32 }, 33 "hash": "5ac108c8ea7524366f96c336309089a3c364f9f8a821ae4a0591966e9314a4c8" 34}