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.
TL;DR
Developers are experiencing an issue where TablesDb returns 0 rows in Python when using queries. If queries are removed, results are indeed returned. An example code snippet is provided. The issue likely lies within the queries being used in TablesDb. Make sure to review the syntax and implementation of queries in TablesDb for proper functionality.