Our Personal Data Server from scratch!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 61 lines 1.4 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT did, handle, email, created_at, email_verified, deactivated_at, invites_disabled\n FROM users\n WHERE ($1::text IS NULL OR did > $1)\n AND ($2::text IS NULL OR email ILIKE $2)\n AND ($3::text IS NULL OR handle ILIKE $3)\n ORDER BY did ASC\n LIMIT $4", 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 "ordinal": 4, 28 "name": "email_verified", 29 "type_info": "Bool" 30 }, 31 { 32 "ordinal": 5, 33 "name": "deactivated_at", 34 "type_info": "Timestamptz" 35 }, 36 { 37 "ordinal": 6, 38 "name": "invites_disabled", 39 "type_info": "Bool" 40 } 41 ], 42 "parameters": { 43 "Left": [ 44 "Text", 45 "Text", 46 "Text", 47 "Int8" 48 ] 49 }, 50 "nullable": [ 51 false, 52 false, 53 true, 54 false, 55 false, 56 true, 57 true 58 ] 59 }, 60 "hash": "0559f53385a1549551c920fa19dcf55d5f0f880cd040f2b6ccfe3cfed89daacb" 61}