this repo has no description
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT\n u.id, u.did, u.handle, u.email,\n u.preferred_notification_channel as \"channel: crate::notifications::NotificationChannel\",\n k.key_bytes, k.encryption_version\n FROM users u\n JOIN user_keys k ON u.id = k.user_id\n WHERE u.did = $1", 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 "ordinal": 3, 23 "name": "email", 24 "type_info": "Text" 25 }, 26 { 27 "ordinal": 4, 28 "name": "channel: crate::notifications::NotificationChannel", 29 "type_info": { 30 "Custom": { 31 "name": "notification_channel", 32 "kind": { 33 "Enum": [ 34 "email", 35 "discord", 36 "telegram", 37 "signal" 38 ] 39 } 40 } 41 } 42 }, 43 { 44 "ordinal": 5, 45 "name": "key_bytes", 46 "type_info": "Bytea" 47 }, 48 { 49 "ordinal": 6, 50 "name": "encryption_version", 51 "type_info": "Int4" 52 } 53 ], 54 "parameters": { 55 "Left": [ 56 "Text" 57 ] 58 }, 59 "nullable": [ 60 false, 61 false, 62 false, 63 true, 64 false, 65 false, 66 true 67 ] 68 }, 69 "hash": "dfcfb9ccc41c389bf06548f815080e7601c636ddce2b5a04a2d33a19461a2fe3" 70}