Can I use the getRow functionality if that row contains encrypted string attributes? Or is this completely impossible to get the value on the client side? From this blog post I was assuming this only applied to querying and indexing, but am I missing something?
I get this error
AppwriteException: row_not_found, Row with the requested ID could not be found. (404)
but I am sure that the row exists and have checked the IDs of the databasae, table and row. I have enabled row security and given all permissions to the current user. I can query other tables in the same database.
Is this a generic error message? Can I not access rows with an encrypted attribute from the client at all?
As that blog post states:
encrypted attributes cannot be queried. You cannot filter, search, or sort based on encrypted values.
Okay, but that means the entire row cannot be queried (I assume getRow() basically is just a query)? Even unencrypted attributes are not retrievable?
Hm, I have to look into it. I created a new table with just a singular unencrypted string attribute and that row was also not found. Will check that out later and probably use a cloud function to decrypt the key that needs to be in plaintext for querying
Recommended threads
- Deployment fails after 15+ minutes: "Wai...
Hi, I'm Jayden. My email is jaydthom@haverford.org, and i'm having persistent deployment failures with my Next.js project. What happens: Push to GitHub trigg...
- DB connection | Got timeout reading comm...
When looking at the logs of `appwrite-mariadb` I'm seeing a lot of: ``` 2026-04-09 7:37:28 10 [Warning] Aborted connection 10 to db: 'appwrite' user: 'appwrit...
- Invalid document structure: Unknown attr...
Environment: Dart version: 3.5.1 dart_appwrite: 13.0.0 I’ve already created the database structure using a Dart function. I can create data records using cloud...