this repo has no description
1{
2 "db_name": "PostgreSQL",
3 "query": "\n SELECT u.did, u.deactivated_at, u.takedown_ref, r.repo_root_cid, r.repo_rev\n FROM repos r\n JOIN users u ON r.user_id = u.id\n WHERE u.did > $1\n ORDER BY u.did ASC\n LIMIT $2\n ",
4 "describe": {
5 "columns": [
6 {
7 "ordinal": 0,
8 "name": "did",
9 "type_info": "Text"
10 },
11 {
12 "ordinal": 1,
13 "name": "deactivated_at",
14 "type_info": "Timestamptz"
15 },
16 {
17 "ordinal": 2,
18 "name": "takedown_ref",
19 "type_info": "Text"
20 },
21 {
22 "ordinal": 3,
23 "name": "repo_root_cid",
24 "type_info": "Text"
25 },
26 {
27 "ordinal": 4,
28 "name": "repo_rev",
29 "type_info": "Text"
30 }
31 ],
32 "parameters": {
33 "Left": [
34 "Text",
35 "Int8"
36 ]
37 },
38 "nullable": [
39 false,
40 true,
41 true,
42 false,
43 true
44 ]
45 },
46 "hash": "f6723557ad451b8f4349df8ad4ec35f7abc8590262156bfd4cdc4dbf11ddf8c9"
47}