this repo has no description
1{
2 "db_name": "PostgreSQL",
3 "query": "\n SELECT s.did, u.id as user_id, u.email, u.handle, 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": "did",
9 "type_info": "Text"
10 },
11 {
12 "ordinal": 1,
13 "name": "user_id",
14 "type_info": "Uuid"
15 },
16 {
17 "ordinal": 2,
18 "name": "email",
19 "type_info": "Text"
20 },
21 {
22 "ordinal": 3,
23 "name": "handle",
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": "55c4e13e5ff23aaa71c3ab417891a5f56542571ba3f15c6d9dae153405bc4275"
46}