We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29136fb commit 6022f40Copy full SHA for 6022f40
src/main/java/org/tuna/zoopzoop/backend/domain/dashboard/entity/Dashboard.java
@@ -21,7 +21,7 @@ public class Dashboard extends BaseEntity {
21
22
// 이 대시보드가 담고 있는 그래프 콘텐츠 (1:1 관계)
23
// Cascade 설정을 통해 Dashboard 저장 시 Graph도 함께 저장되도록 함
24
- @OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL, orphanRemoval = true)
+ @OneToOne(fetch = FetchType.EAGER, cascade = CascadeType.ALL, orphanRemoval = true)
25
@JoinColumn(name = "graph_id")
26
private Graph graph;
27
0 commit comments