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
- Error: Trying to install appwrite on sub...
``` [Error] Method: POST appwrite | [Error] URL: /v1/account appwrite | [Error] Type: Appwrite\Extend\Exce...
- Type 'Theme' does not satisfy the constr...
Type 'Theme' does not satisfy the constraint 'Row'. Type 'Theme' is missing the following properties from type 'Row': $id, $sequence, $tableId, $databaseId, a...
- JavaScript heap out of memory during bui...
I am running into heap out of memory when I am trying to build an Appwrite site. Usually this can be fixed by modifying the `max-old-space-size` configuration, ...