Skip to main content

max / makenotwork

693 B · 30 lines History Blame Raw
1 {
2 "db_name": "PostgreSQL",
3 "query": "SELECT t.author_id, c.slug AS category_slug\n FROM threads t\n JOIN categories c ON c.id = t.category_id\n WHERE t.id = $1 AND c.community_id = $2 AND t.deleted_at IS NOT NULL",
4 "describe": {
5 "columns": [
6 {
7 "ordinal": 0,
8 "name": "author_id",
9 "type_info": "Uuid"
10 },
11 {
12 "ordinal": 1,
13 "name": "category_slug",
14 "type_info": "Text"
15 }
16 ],
17 "parameters": {
18 "Left": [
19 "Uuid",
20 "Uuid"
21 ]
22 },
23 "nullable": [
24 false,
25 false
26 ]
27 },
28 "hash": "d8033e9e9bde0d360ab1bd4f125877ccd89a93fe7389076cd26ba435376dd670"
29 }
30