We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d2a8e94 + dbe2ec8 commit 4179041Copy full SHA for 4179041
adminforth/documentation/docs/tutorial/03-Customization/11-dataApi.md
@@ -139,9 +139,8 @@ const usersWithNoUgcAccess = await admin.resource('adminuser').list(
139
140
], 15, 0, Sorts.DESC('createdAt')
141
);
142
-
143
-This will produce next SQL query:
144
```
+This will produce next SQL query:
145
146
147
SELECT *
@@ -150,10 +149,8 @@ WHERE "role" != 'Admin'
150
149
AND (user_meta->>'age') < 18
151
ORDER BY "createdAt" DESC
152
LIMIT 15 OFFSET 0;
153
154
155
156
157
Finds users with age less then 18 from meta field which should be a JSONB field in Postgress.
158
159
## Create a new item in database
0 commit comments