this repo has no description
1{
2 "db_name": "PostgreSQL",
3 "query": "SELECT u.id, u.did, u.handle, u.password_hash, k.key_bytes, k.encryption_version FROM users u JOIN user_keys k ON u.id = k.user_id WHERE u.handle = $1 OR u.email = $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": "password_hash",
24 "type_info": "Text"
25 },
26 {
27 "ordinal": 4,
28 "name": "key_bytes",
29 "type_info": "Bytea"
30 },
31 {
32 "ordinal": 5,
33 "name": "encryption_version",
34 "type_info": "Int4"
35 }
36 ],
37 "parameters": {
38 "Left": [
39 "Text"
40 ]
41 },
42 "nullable": [
43 false,
44 false,
45 false,
46 false,
47 false,
48 true
49 ]
50 },
51 "hash": "583ab12e7634fa1ac888dbe319f8cd77405ae6246656c8698a7618a5a29a4ccb"
52}