LDs_GroupOriginal post
Rank 2: Process
I'm little bit confused 
Flutter
My collections look like:
YAML
- dbA: - id - title - content- dbB: - id - dbA_id - bodyI to get fetch dbB to return selected data that json look like:
JSON
[ { 'id': ..., 'body': ..., 'relativeDbA': { 'id': ..., 'title': ... } },
{ ... },
...]Summary
The user is confused about how to fetch data from a collection called "dbB" in Flutter. They want to retrieve selected data from "dbB" and have it return JSON with some data from a related collection "dbA".
Solution: The user should utilize the relationships feature in Appwrite 1.3. They can refer to the documentation at <https://appwrite.io/docs/databases-relationships> for more information on how to implement this feature.