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 774 B view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT DISTINCT b.cid, b.storage_key, b.mime_type\n FROM blobs b\n JOIN record_blobs rb ON rb.blob_cid = b.cid\n WHERE rb.repo_id = $1\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "cid", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "storage_key", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "mime_type", 19 "type_info": "Text" 20 } 21 ], 22 "parameters": { 23 "Left": [ 24 "Uuid" 25 ] 26 }, 27 "nullable": [ 28 false, 29 false, 30 false 31 ] 32 }, 33 "hash": "b22003e74a58303beb993547a8e2bf2415152a5546d6a10c9aebc223420b0088" 34}