
Am having a hard time setting up queries for a python function that pulls a list of users an send notification to each user and there is no documentation showing this. as shown below;
TypeScript
    result = database.list_documents(
        database_id="smilesCars",
        collection_id="users",
        queries = {
         
            # "$filter": "bdate=24",  # Replace with your actual field name and value
            # "$filter": "bmonth=11",  # Replace with your actual field name and value
            # "$limit": 25,  # Replace with the desired limit
            # "$offset": 0  # Replace with the desired offset
        }
    )
TL;DR
 Problem: The developer is having trouble setting up queries for a Python function that pulls a list of users and sends notifications to each user. They mention that there is no documentation showing how to do this.
Solution: 
To set up queries in Python using Appwrite, you can use the `list_documents` function from the `database` module. In the code provided, the `queries` parameter is currently commented out. Uncommenting and modifying the `queries` dictionary inside `list_documents` will allow you to filter and limit the results based on specific field values. For example, you can use `$filter` to specify a specific field andRecommended threads
- Server error 500 in appwrite 1.8.0jwt = users.create_jwt(res["userId"])["jwt"] I got this error 500 after changing environment variables and restarting containers export _APP_DOMAIN=server1.ava... 
- Email templates partially broken in non-...Good afternoon! Non-english locales are missing some variables introduced in recent releases. That makes the sent emails look bad. The issue has been raised a... 
- Query.contains not supported on Cloud?I try to filter a row which contain a string inside a string array column, however I get the following error: ``` {"name":"AppwriteException","code":400,"type"... 
