forked from
tranquil.farm/tranquil-pds
Our Personal Data Server from scratch!
1{
2 "db_name": "PostgreSQL",
3 "query": "SELECT rkey, record_cid FROM records\n WHERE repo_id = $1 AND collection = $2 AND rkey >= $3 AND rkey <= $4\n ORDER BY rkey DESC LIMIT $5",
4 "describe": {
5 "columns": [
6 {
7 "ordinal": 0,
8 "name": "rkey",
9 "type_info": "Text"
10 },
11 {
12 "ordinal": 1,
13 "name": "record_cid",
14 "type_info": "Text"
15 }
16 ],
17 "parameters": {
18 "Left": [
19 "Uuid",
20 "Text",
21 "Text",
22 "Text",
23 "Int8"
24 ]
25 },
26 "nullable": [
27 false,
28 false
29 ]
30 },
31 "hash": "e2c2a0fdfeee0275d4afc6ef5e372548b043e6531b8d6934de1a31858651ad39"
32}