Alternative ATProto PDS implementation
6
fork

Configure Feed

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

at 3fe47718b90ff9acd2f5a35b057eb267b5ea28bc 26 lines 630 B view raw
1{ 2 "db_name": "SQLite", 3 "query": "\n SELECT a.status, h.handle\n FROM accounts a\n JOIN handles h ON a.did = h.did\n WHERE a.did = ?\n ORDER BY h.created_at ASC\n LIMIT 1\n ", 4 "describe": { 5 "columns": [ 6 { 7 "name": "status", 8 "ordinal": 0, 9 "type_info": "Text" 10 }, 11 { 12 "name": "handle", 13 "ordinal": 1, 14 "type_info": "Text" 15 } 16 ], 17 "parameters": { 18 "Right": 1 19 }, 20 "nullable": [ 21 false, 22 false 23 ] 24 }, 25 "hash": "50a7b5f57df41d06a8c11c8268d8dbef4c76bcf92c6b47b6316bf5e39fb889a7" 26}