Web Developer
I upgraded my Next.js version to 14 and now I am getting this error when calling listDocuments on a collection. Any idea?
hear is the code:
let response = await db.listDocuments( process.env.NEXT_PUBLIC_APPWRITE_DATABASE_ID as string, collections.posts, [ Query.limit(limit), Query.offset((page - 1) * limit), Query.orderDesc('$createdAt'), Query.isNull('parent')
] ); return response.documents;}```