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 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 "parameters": { 33 "Left": [ 34 "Text" 35 ] 36 }, 37 "nullable": [ 38 false, 39 false, 40 false, 41 false, 42 false 43 ] 44 }, 45 "hash": "2305db96343fcb721adc4a6a608b64678f707928d3f9395070f5e21a5ca9b601" 46}