You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a JHipster-generated application, there is an inconsistency in handling many-to-many relationships:
The owner entity's edit page correctly retrieves and updates associated data.
The other entity's edit page does not return associated records and does not allow modifications.
JHipster JDL Configuration
JDL Definitions
entity Product {
name String required,
price BigDecimal required
}
entity Category {
name String required
}
relationship ManyToMany {
Product{categories} to Category{products}
}
paginate Product with pagination
filter Product
paginate Category with pagination
filter Category
-->
JDL is mandatory for bug reports. This will allow us to use automated tests and generate the broken sample using the jhipster from-issue command.
Motivation for or Use Case
This issue prevents proper handling of many-to-many relationships in the generated UI, leading to incomplete data retrieval and modification restrictions.
Reproduce the Error
Generate a JHipster application with a many-to-many relationship.
Go to the edit page of the owner entity and verify that associated data is retrieved correctly.
Go to the edit page of the other entity and observe that no related data is fetched or editable.
Related Issues
Suggest a Fix
JHipster Version(s)
8.9.0
Browsers and Operating System
Tickets opened without reproduction steps or that do not follow the template recommendation will be closed.
Checking this box is mandatory (this is just to show you read everything).
The text was updated successfully, but these errors were encountered:
Overview of the issue
In a JHipster-generated application, there is an inconsistency in handling
many-to-many
relationships:JHipster JDL Configuration
JDL Definitions
jhipster from-issue
command.Motivation for or Use Case
This issue prevents proper handling of many-to-many relationships in the generated UI, leading to incomplete data retrieval and modification restrictions.
Reproduce the Error
Related Issues
Suggest a Fix
JHipster Version(s)
8.9.0
Browsers and Operating System
The text was updated successfully, but these errors were encountered: