When I try to list the rows with queries, there is no column data included in the returned value with forced me to fetch the items one-by-one with ID (which was not the case with older Database module) . Am I doing something wrong?
Example snippet (Go SDK):
TypeScript
docs, err := ServerClient.TablesDB.ListRows(
AuthDB,
EmailVerifyTable,
ServerClient.TablesDB.WithListRowsQueries([]string{
query.Equal("user_id", userID),
query.Equal("email", email),
query.Equal("secret_key", secret),
query.Offset(0),
query.Limit(1),
}),
)
TL;DR
Issue: Developer is unable to retrieve column data when using TablesDB ListRows function with queries.
Solution: Instead of using `query.Select([*])`, developers should specify the columns they want to retrieve in the query. For example, `ServerClient.TablesDB.WithListRowsQueries([]string{"user_id", "email", "secret_key"})` to include specific columns in the returned data.I have tried to use with query.Select([*]), however that was not include the columns either.
Recommended threads
- Cloud 500 error
- float
Hello everyone, So, I created a column of type **float** with the **min** and **required** options, I noticed that it wouldn't let me set a **2 decimal points ...
- Unauthorized Charge on My Card – I Don’t...
Hi, I need urgent help. I received a bank SMS about a charge from "APPWRITE PRO" (18.460 JOD on 10/12/2025 at 03:47), but I DO NOT have an Appwrite account and...