this repo has no description
1{
2 "db_name": "PostgreSQL",
3 "query": "\n SELECT\n u.did,\n u.handle,\n d.granted_scopes,\n d.granted_at,\n true as \"is_active!\"\n FROM account_delegations d\n JOIN users u ON u.did = d.controller_did\n WHERE d.delegated_did = $1\n AND d.revoked_at IS NULL\n AND u.deactivated_at IS NULL\n AND u.takedown_ref IS NULL\n ORDER BY d.granted_at DESC\n ",
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": "granted_scopes",
19 "type_info": "Text"
20 },
21 {
22 "ordinal": 3,
23 "name": "granted_at",
24 "type_info": "Timestamptz"
25 },
26 {
27 "ordinal": 4,
28 "name": "is_active!",
29 "type_info": "Bool"
30 }
31 ],
32 "parameters": {
33 "Left": [
34 "Text"
35 ]
36 },
37 "nullable": [
38 false,
39 false,
40 false,
41 false,
42 null
43 ]
44 },
45 "hash": "d8e33a911d741e636d1f0efd81f8fc528d9af2716887d0d72b70ca7c7d7eb11a"
46}