this repo has no description
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT u.handle, u.did, u.email, k.key_bytes\n FROM sessions s\n JOIN users u ON s.did = u.did\n JOIN user_keys k ON u.id = k.user_id\n WHERE s.access_jwt = $1\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "handle", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "did", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "email", 19 "type_info": "Text" 20 }, 21 { 22 "ordinal": 3, 23 "name": "key_bytes", 24 "type_info": "Bytea" 25 } 26 ], 27 "parameters": { 28 "Left": [ 29 "Text" 30 ] 31 }, 32 "nullable": [ 33 false, 34 false, 35 false, 36 false 37 ] 38 }, 39 "hash": "09d75b756a6bd981cf2a9e922eccc38677bee474813c66465904aec3c0da1c3e" 40}