Hi I am still a bit new but am trying to add a query to the list_documents function by keep getting the error appwrite.exception.AppwriteException: Invalid query: {"method":"isNull","attribute":"timestamp_analyzed"}
My code:
from appwrite.query import Query
images = databases.list_documents(
database_id = 'DatabaseID',
collection_id = 'CollectionID',
queries = [
Query.is_null("timestamp_analyzed")
]
)
The function works fine when I dont pass a query. Any ideas on what im doing wrong?