Currently, I have a User(s) collection, which pretty much duplicates many of the columns in the native auth User collection created automatically on every appwrite project. Then I use this User(s) collection to create relations with other things that are not included on the default User schema that belongs to Appwrite.
At somepoint today, I was creating this User(s) table but named User and of course it failed, because a collection with that ID already exists. 🙂 So I wondered, if instead I could create a relationship from my other Foo and Bar collections directly to User, instead of having this "duplicate" User(s) collection?
TL;DR
It is currently not possible to create a `relationships` collection with the native User collection in Appwrite. The user suggests creating relationships with other collections directly to the User collection instead of having a duplicate User(s) collection. However, no solution is provided in the thread.