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
- 404 Error on Self Hosted instance
I have a 404 page not found error when I want to access my console 😢 I am on Ubuntu 24.04.3 LTS and I just do a `apt update` and `apt upgrade` and after a reb...
- Need help: Appwrite API stuck at 25 resu...
Hi! I need help urgently. I’m trying to export all users/documents from my Appwrite Cloud project, but the API always returns only the first 25 items. Paginati...
- not able to fetch user data
I am unable to fetch all users from my Appwrite Cloud project. My project has around 3700 users, but the API always returns only 25 users even though I created...