this repo has no description
1{
2 "db_name": "PostgreSQL",
3 "query": "\n INSERT INTO records (repo_id, collection, rkey, record_cid, repo_rev)\n SELECT $1, collection, rkey, record_cid, $5\n FROM UNNEST($2::text[], $3::text[], $4::text[]) AS t(collection, rkey, record_cid)\n ON CONFLICT (repo_id, collection, rkey) DO UPDATE\n SET record_cid = EXCLUDED.record_cid, repo_rev = EXCLUDED.repo_rev, created_at = NOW()\n ",
4 "describe": {
5 "columns": [],
6 "parameters": {
7 "Left": [
8 "Uuid",
9 "TextArray",
10 "TextArray",
11 "TextArray",
12 "Text"
13 ]
14 },
15 "nullable": []
16 },
17 "hash": "e1066ab3a86852164e39848733c0f7e837657ea6595ea0094a6135673ea924a5"
18}