@@ -94,7 +94,9 @@ Example: Link `academic_works.juhendaja` to a `people` collection.
-**Interface**: `Select Dropdown` or `User` if relevant
4. Enable **"This field is a relational field"**.
5. Set relation type:
- 🧍 Many-to-One → A thesis has one supervisor, but a person can supervise many theses.
- Many-to-One: Could be applied in a table called "Thesis" to connect it to one for "Supervisors". This is because many theses could have the same supervisor (one supervisor).
- One-to-Many: Effectively the opposite of the above. And could be used in the "Supervisors" table to connect to the "Thesis" table. This is because a person (one person) can supervise many theses.
- Many-to-Many: This would occur if a thesis could have multiple authors, and authors could have multiple theses. Then a many-to-many relationship could be added between the "Authors" and "Thesis" tables.