
Hi, i have a problem:
const result = await database.listDocuments(envs.DATABASE_ID,envs.COLLECTION_ID,[Query.startsWith('date', '2025-04-01')])
this one doesnt work
const result = await database.listDocuments(envs.DATABASE_ID,envs.COLLECTION_ID,[Query.startsWith('date', '2025-04-01T22:03:00.000+00:00')])
and this one does, i dont know why? I need first one to work ofc. Since its startsWith i expect it to work?

update

const startOfDay = ${date}T00:00:00.000+00:00
; // Start of the day
const endOfDay = ${new Date(new Date(date).setDate(new Date(date).getDate() + 1)).toISOString().split('T')[0]}T00:00:00.000+00:00
;
[ Query.greaterThan('date', startOfDay), Query.lessThan('date', endOfDay) ])
this seems to work but i still dont undestand why first approach is not working, this is working for almost everyday
Recommended threads
- Cannot delete account using appwrite aut...
other things working well, but my delete isn't working : deleteAccount: async (password: string) => { try { // First, delete all active ses...
- Error uploading PDF: [AppwriteException:...
here is the my code export const uploadPDF = async (pdf) => { try { console.log("Uploading file:", pdf); const file = pdf.assets[0]; console....
- Adding and Deleting Relationships
I am currently applying a very ugly way to manage adding and subtracting team members to the team, is there a better way to do this?: export async function re...
