this repo has no description
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT st.id, st.did, st.scope, st.controller_did, k.key_bytes, k.encryption_version\n FROM session_tokens st\n JOIN users u ON st.did = u.did\n JOIN user_keys k ON u.id = k.user_id\n WHERE st.refresh_jti = $1 AND st.refresh_expires_at > NOW()\n FOR UPDATE OF st", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Int4" 10 }, 11 { 12 "ordinal": 1, 13 "name": "did", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "scope", 19 "type_info": "Text" 20 }, 21 { 22 "ordinal": 3, 23 "name": "controller_did", 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 true, 46 true, 47 false, 48 true 49 ] 50 }, 51 "hash": "80c029ff08ef3f7d19054fca573dee4037f38b7a7bf1473a0cae7887350de556" 52}