this repo has no description
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT s.did, k.key_bytes, u.id as user_id, u.email_confirmation_code, u.email_confirmation_code_expires_at, u.email_pending_verification\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": "did", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "key_bytes", 14 "type_info": "Bytea" 15 }, 16 { 17 "ordinal": 2, 18 "name": "user_id", 19 "type_info": "Uuid" 20 }, 21 { 22 "ordinal": 3, 23 "name": "email_confirmation_code", 24 "type_info": "Text" 25 }, 26 { 27 "ordinal": 4, 28 "name": "email_confirmation_code_expires_at", 29 "type_info": "Timestamptz" 30 }, 31 { 32 "ordinal": 5, 33 "name": "email_pending_verification", 34 "type_info": "Text" 35 } 36 ], 37 "parameters": { 38 "Left": [ 39 "Text" 40 ] 41 }, 42 "nullable": [ 43 false, 44 false, 45 false, 46 true, 47 true, 48 true 49 ] 50 }, 51 "hash": "3377750b73c3831cbd6c96b971ea8b6d4da38f1bc740afce3136d86c27b8ce8d" 52}