-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Data Model /Service Factory error generating manyToMany relationships #9075
Comments
Hey @yuning-zhang, just wanted to let you know that I am on it and ill get to the bottom of this issue |
@yuning-zhang could you update your role DML with the following please (including mappedBy) const Role = model.define("role", {
id: model.id().primaryKey(),
name: model.text().unique(),
employees: model.manyToMany(() => Employee, {
mappedBy: "roles",
}),
}); it should fix this issue, in the meantime I ll find a way to warn when this happens |
@adrien2p Thank you! That worked. I tested with adding mappedBy to Employee model too and it also fixed the issue. Do you recommend adding a mappedBy to one side of manyToMany relationship in general? Feel free to close the ticket. |
Yes at least one side must have the mapped by, I ve created a PR to throw if it is not the case (#9085) @shahednasser maybe we should add that as part of the doc? |
**What** When both sides of a many to many relationship do not define the mapped by option, it leads to misconfigured relations and a malformed SQL query. (ref. #9075) - When both mapped by are not defined, infer look up to try to identify the missing configuration if any - Disallow defining many to many only on one side
Bug report
Describe the bug
While generating manyToMany relationship between two models, retrieved relationship is not correct (using retrieve or list). This is possible due to ORM switching the select statement from different tables.
System information
Medusa version (including plugins): v2.0.8-preview
Node.js version: v20.12.2
Database: postgres (PostgreSQL) 14.12 (Homebrew)
Operating system: macOS 14.6
Browser (if relevant):
Steps to reproduce the behavior
Example repo of this bug https://github.com/yuning-zhang/medusa-bug
Expected behavior
The correct response in step 5 should be
Screenshots
If applicable, add screenshots to help explain your problem
Code snippets
Set up a public repo. Just need to run it locally with a database.
https://github.com/yuning-zhang/medusa-bug
Additional context
Not all manyToMany relationships are broken, not sure why this particular set up causes ORM to error.
The text was updated successfully, but these errors were encountered: