this repo has no description
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT od.id, od.user_agent, od.friendly_name, od.trusted_at, od.trusted_until, od.last_seen_at\n FROM oauth_device od\n JOIN oauth_account_device oad ON od.id = oad.device_id\n WHERE oad.did = $1 AND od.trusted_until IS NOT NULL AND od.trusted_until > NOW()\n ORDER BY od.last_seen_at DESC", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "user_agent", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "friendly_name", 19 "type_info": "Text" 20 }, 21 { 22 "ordinal": 3, 23 "name": "trusted_at", 24 "type_info": "Timestamptz" 25 }, 26 { 27 "ordinal": 4, 28 "name": "trusted_until", 29 "type_info": "Timestamptz" 30 }, 31 { 32 "ordinal": 5, 33 "name": "last_seen_at", 34 "type_info": "Timestamptz" 35 } 36 ], 37 "parameters": { 38 "Left": [ 39 "Text" 40 ] 41 }, 42 "nullable": [ 43 false, 44 true, 45 true, 46 true, 47 true, 48 false 49 ] 50 }, 51 "hash": "d77baba1d885d532a18a0376a95774681fb0fe9e88733fa4315e9aef799cd19f" 52}