Philipp
I am trying to get documents, that were created 24h ago or earlier. my code doesn't work (I just get {"total":0,"documents":[]}
). What am I doing wrong is there a better way to do it?
TypeScript
const offset = (24 * 60 * 60 * 1000);
const date = new Date();
date.setTime(date.getTime() - offset);
let promise_get = databases.listDocuments(
dbToUse,
collectionToUse,
[
Query.lessThan('$createdAt', date)
]
);
TL;DR
The developer is trying to query documents that were created 24 hours ago or earlier. They have tried using the code `Query.lessThanEqual("$createdAt", date)`, but it is not working. They are asking for help on what they may be doing wrong and if there is a better way to achieve this. kamal.panara
try this:
TypeScript
Query.lessThanEqual("$createdAt", date),
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here π I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...