
I want to show specific month with year data according to $ceatedAt property , i am unable to do it , how will i do this ?

databaseID,
collectionId,
[
Query.limit(50),
Query.orderDesc("$createdAt"),
Query.greaterThan("$createdAt",date).
Query.notEqual("status","failed"),
]
);```

this code i have written , but its not working at all

Did you format date as an iso 8601 string in UTC?

After converting , my code works , thanks

[SOLVED] Appwrite Query Help with $createdAt property
Recommended threads
- Sharing cookies
Hi, I’m using Appwrite Cloud, and I have a setup where my Appwrite backend is hosted on a subdomain (e.g., api.example.com), while my frontend (Next.js app) and...
- Organization not exists anymore
Hello! We have a problem with a cloud database. We are on the Free plan, but after a refresh the site wants me to create a new organisation, and I not see the c...
- JSON and Object Support in Collection do...
I am working with Next.Js and Appwrite Cloud, I am relatively New to Appwrite but i have noticed there is no direct support of JSON and Object support in attrib...
