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