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 34 lines 793 B view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT id, did, handle\n FROM users\n WHERE delete_after IS NOT NULL\n AND delete_after < NOW()\n AND deactivated_at IS NOT NULL\n LIMIT $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": "handle", 19 "type_info": "Text" 20 } 21 ], 22 "parameters": { 23 "Left": [ 24 "Int8" 25 ] 26 }, 27 "nullable": [ 28 false, 29 false, 30 false 31 ] 32 }, 33 "hash": "6e4a3ef4485b1cdb2f0d18f4da14d82a314806dbe295fcfda0a4693de738d41d" 34}