Anhelina KOriginal post
Web Developer
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.']),
]);
Summary
If no selects are specified, all relationships will load. To retrieve only specific relationships like translation.word_from.* and translation.word_to.*, use opt-in relationships, a feature available in version 1.8. Currently, there is no stable self-hosted release of version 1.8.