We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee3daeb + e09d8c9 commit 3e6e135Copy full SHA for 3e6e135
adminforth/documentation/docs/tutorial/03-Customization/11-dataApi.md
@@ -108,13 +108,13 @@ const schools = await admin.resource('schools').list(
108
);
109
```
110
111
-Get all users that have gmail address OR the ones created not in 2024
+Get all users that have gmail address AND the ones created not in 2024
112
113
```ts
114
const users = await admin.resource('adminuser').list(
115
- Filters.OR([
+ Filters.AND([
116
Filters.LIKE('email', '@gmail.com'),
117
- Filters.AND([
+ Filters.OR([
118
Filters.LT('createdAt', '2024-01-01T00:00:00.000Z'),
119
Filters.GTE('createdAt', '2025-01-01T00:00:00.000Z'),
120
]),
0 commit comments