this repo has no description
1{
2 "db_name": "PostgreSQL",
3 "query": "\n SELECT\n email,\n handle,\n preferred_notification_channel as \"channel: NotificationChannel\"\n FROM users\n WHERE id = $1\n ",
4 "describe": {
5 "columns": [
6 {
7 "ordinal": 0,
8 "name": "email",
9 "type_info": "Text"
10 },
11 {
12 "ordinal": 1,
13 "name": "handle",
14 "type_info": "Text"
15 },
16 {
17 "ordinal": 2,
18 "name": "channel: NotificationChannel",
19 "type_info": {
20 "Custom": {
21 "name": "notification_channel",
22 "kind": {
23 "Enum": [
24 "email",
25 "discord",
26 "telegram",
27 "signal"
28 ]
29 }
30 }
31 }
32 }
33 ],
34 "parameters": {
35 "Left": [
36 "Uuid"
37 ]
38 },
39 "nullable": [
40 true,
41 false,
42 false
43 ]
44 },
45 "hash": "bfb9ee0187a0062cb83c9295cf266f56fed0edd0f9f154c1786f2b0cdbe39508"
46}