this repo has no description
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT\n created_at,\n channel as \"channel: String\",\n notification_type as \"notification_type: String\",\n status as \"status: String\",\n subject,\n body\n FROM notification_queue\n WHERE user_id = $1\n ORDER BY created_at DESC\n LIMIT 50\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "created_at", 9 "type_info": "Timestamptz" 10 }, 11 { 12 "ordinal": 1, 13 "name": "channel: String", 14 "type_info": { 15 "Custom": { 16 "name": "notification_channel", 17 "kind": { 18 "Enum": [ 19 "email", 20 "discord", 21 "telegram", 22 "signal" 23 ] 24 } 25 } 26 } 27 }, 28 { 29 "ordinal": 2, 30 "name": "notification_type: String", 31 "type_info": { 32 "Custom": { 33 "name": "notification_type", 34 "kind": { 35 "Enum": [ 36 "welcome", 37 "email_verification", 38 "password_reset", 39 "email_update", 40 "account_deletion", 41 "admin_email", 42 "plc_operation", 43 "two_factor_code", 44 "channel_verification" 45 ] 46 } 47 } 48 } 49 }, 50 { 51 "ordinal": 3, 52 "name": "status: String", 53 "type_info": { 54 "Custom": { 55 "name": "notification_status", 56 "kind": { 57 "Enum": [ 58 "pending", 59 "processing", 60 "sent", 61 "failed" 62 ] 63 } 64 } 65 } 66 }, 67 { 68 "ordinal": 4, 69 "name": "subject", 70 "type_info": "Text" 71 }, 72 { 73 "ordinal": 5, 74 "name": "body", 75 "type_info": "Text" 76 } 77 ], 78 "parameters": { 79 "Left": [ 80 "Uuid" 81 ] 82 }, 83 "nullable": [ 84 false, 85 false, 86 false, 87 false, 88 true, 89 false 90 ] 91 }, 92 "hash": "4f131ba30c73a48ddf5630e75f92a86b6ce8a00a4bcae60442d05abc785abc1a" 93}