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
- MariaDB refuses to connect to appwrite
Earlier, I tried updating my Appwrite version from 18.1.x to the latest release because my Flutter package required it to function properly. I used the official...
- Custom API domain is unreachable
Earlier my custom api domain was working fine. Now it seems to be offline without a trace a few hours later. I didn't change anything, all the relevant DNS reco...
- "Invalid console fingerprint" when unpau...
I've tried logging out and logging back in, still can't figure out why this is happening.