I recently switched to TablesDb. When listening rows with Queries it returns 0 rows in python.
- 0
- 2
- Databases
- Cloud
olddb.list_documents( queries =[ Query.order_desc("timestamp"), Query.equal("isPosted",[False]) ] ) Above works fine and reruns documents But below don't return any Row. tablesDB.list_rows[ queries=[ Query.order_desc("timestamp"), Query.equal("isPosted",False) ] ] Note: Indexes are created.
If you remove all queries, do you get results?
Removed Queries but still no records. I am using fra region, old API key, old collection ID, old project and old db ID.
aaah! I was still looking for documents as documents = result.get("documents", []) if not documents: print("No Documents") but tablesDb returns rows. Now works fine with documents = **result.get("rows", []) ** if not documents: print("No Rows")
Recommended threads
- HTTP Error 500 ''
Hello to everyone, I'm a Flutter developer and actually I'm developing an app using Appwrite.. during my tests and also massive ones I've noticed something we...
- Charged after Downgrade
I downgraded from the pro plan last month, but it’s still trying to charge my card this month and my account has been restricted
- Invalid type for attribute 'email': emai...
I'm using the node-appwrite SDK to create a table, the column payload looks like this: ```json [{"key":"email","type":"email","required":true, "size": 512}] ``...