
Load relationships of relationships not work
When I try to get translation.word_from.* it failed. But as you can see translation it is relation and word_from also relation
const response = await databases.listDocuments('dev', 'translations_to_sets', [ Query.select(['', '$id', 'translation.word_from.']), ]);
TL;DR
Developers are experiencing issues with loading relationships of relationships; specifically, trying to access translation.word_from.* is failing even though translation and word_from are both relations. The solution is to ensure that the data structure and query syntax are correctly set up for retrieving this nested relationship successfully.Recommended threads
- Self-Hosted Funcitons load limits
Hi all, is there rate/load limits of self hosted functions? I.e called 100 times a second?
- Can't grant Permission.read() for anothe...
I'm building a therapist-client app. When a **client** creates a document, how do I give their **therapist** read access? ## The Problem ```dart // Client cre...
- Getting Cors Error while running console...
Hi. Can anyone help me resolve this. I was not facing CORS error 15 minutes ago but now for some reason I am getting it and not able to resolve it.
