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 798 B view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT icu.code, u.did, icu.used_at\n FROM invite_code_uses icu\n JOIN users u ON icu.used_by_user = u.id\n WHERE icu.code = ANY($1)\n ORDER BY icu.used_at DESC", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "code", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "did", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "used_at", 19 "type_info": "Timestamptz" 20 } 21 ], 22 "parameters": { 23 "Left": [ 24 "TextArray" 25 ] 26 }, 27 "nullable": [ 28 false, 29 false, 30 false 31 ] 32 }, 33 "hash": "6cd8a985907e5948cce8eaf919a4d3d11fc8647df6531d9890cb9b97517dc4c4" 34}