I'm little bit confused <:flutter:714892041401925684>
Flutter My collections look like:
- dbA:
- id
- title
- content
- dbB:
- id
- dbA_id
- body
I to get fetch dbB to return selected data that json look like:
[
{
'id': ...,
'body': ...,
'relativeDbA': {
'id': ...,
'title': ...
}
},
{
...
},
...
]
Starting with Appwrite 1.3, we added support for relationships which let's you do something like this. Please see https://appwrite.io/docs/databases-relationships for more info.
Recommended threads
- Query multi-tenant db with $permissions ...
I'm setting up a multi-tenant database with RLS enabled. My users my have permissions set for multiple Teams, and as such when they query the database with the ...
- Realtime: Listener not triggered on upda...
I self host appwrite 1.8.1. The genereal functionallity works fine. But my realtime subscription isn't updating. I see "Received heartbeat response from realtim...
- Realtime for files() works almost well, ...
I have been trying to make use of realtime, today (14.03.26) I have pulled all the latest versions of docker images, and sdk available. Whats working: - Conn...