I'm trying to make a recursive two-way relationship in Appwrite's DBs for a reddit-alike reply system; ie you can reply to a reply. The issue is, the relationship menu doesn't let me select itself as the Related Collection.
Is there any way to do this? Does a recursive relationship break Appwrite?
correct...for the moment, you can't have a relationship to itself
any plans for it being added in future?
we haven't talked about this explicitly
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...