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):
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),
}),
)
I have tried to use with query.Select([*]), however that was not include the columns either.
Recommended threads
- Connectivity issue after upgrade to 1.9....
When running this command :- docker compose exec appwrite doctor I am getting the following error:- š“ Console.DB.(console)...........................disconnect...
- Transaction feature is not working somet...
I am getting the below error sometimes and sometimes it is working perfectly fine. Transaction failed: AppwriteException: transaction_not_found, Transaction wi...
- Updating to 1.9.0
Docs are lacking, I've already run in to some issues: - Firstly the web UI port doesn't work... had to add ```--http-port=9999``` in to the docker run command t...