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 31 lines 692 B view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT rkey, record_cid FROM records\n WHERE repo_id = $1 AND collection = $2 AND rkey >= $3\n ORDER BY rkey DESC LIMIT $4", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "rkey", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "record_cid", 14 "type_info": "Text" 15 } 16 ], 17 "parameters": { 18 "Left": [ 19 "Uuid", 20 "Text", 21 "Text", 22 "Int8" 23 ] 24 }, 25 "nullable": [ 26 false, 27 false 28 ] 29 }, 30 "hash": "ac19cf2ca6c85e64b91243a2033e23b4e390a5e56ecb2ed6dfa9bd89b1569214" 31}