I see it better in English, hello, I have two documents where in one of them I store the id of the other, something like a union in SQL, how can I do something like
TypeScript
SELECT * FROM worker, department WHERE worker.id = department.id_worker AND department.id = 5
TL;DR
In this support thread, a developer is asking how to perform a SQL-like query in relationships between two documents. They want to achieve something similar to the SQL query: `SELECT * FROM worker, department WHERE worker.id = department.id_worker AND department.id = 5`. The developer is seeking guidance on how to accomplish this.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...
- Flutter Android oAuth is no more working
I currently don't get the oAuth login to work in flutter android. it works on ios and on web. but when try to use it on Android, i get to the point where the ca...
- 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...