I am implementing followers and following system for my rn app, but unable to have relationship with same collection 2 times Eg.
- follower_id
- following_id
Both attributes should have relationship with users collection, How is it possible??
I have no problem creating more than one relationship in the same collection, are getting some error? can you share the attributes of the 3 collections?
I also don't have problem creating relationship more than one with different collections
I want multiple relationship with same collection
Is the Relationship one-to-many? Many-to-one? Etc
Many to many
Let me explain: I have two attributes
- follower_id
- following_id
I want to get both follower and following user data when I fetch document from followers collection, that's why I need relationship in both attributes with same collection
Yeah. I don’t think that’s possible at the moment.
When will appwrite support complex queries like Join, subqueries... Etc
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...
- Appwrite Storage error 503s for automate...
I'm facing error 503s from Appwrite after about 5-6 seconds of making AI requests from my tool with images and files above 20MB (=> not inline base64 used, but ...
- 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...