With the new update for db relationships, how can I select only the main collection documents and still get the IDs of the child docs?
Is it possible to select a relationship attribute and not get the env var level deep of relations?
Yeah, that would be great to have this option, for example in a Query.select(['todos.$id']) or in other ways.
Example return value with query: Query.select(['name, todos.$id'])
Project {
name: 'project",
todos: [
'docId1',
'docId2',
]
}
It is crucial to my project to use the Relationship feature.
But this is already discussed here:
Recommended threads
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...
- Unknown attribute type: varchar / text
Since the `string` type is deprecated I tried using `varchar` and `text` in some newer tables, but when running `appwrite pull tables && appwrite types ./src/li...