We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
概要 フロントエンドの実装を考えて、バックエンド側で外部キーをエンティティーに置き換えてレスポンスする
Refactor: Dependency Injectionを導入 DI,DDDを導入する際にこのissueが解決する
例:
{ "id": 1, "name": "Team A", "usersIds": [ 1, 3 ] }
以下のようにusersに置き換える。
{ "id": 1, "name": "Team A", "users": [ { "id": 1, "name": "User A" }, { "id": 3, "name": "User A" } ] }
タスク
The text was updated successfully, but these errors were encountered:
部分的に導入するのはアリだと思う。ただ時間がないので次回以降でもいいかもしれない。 low
Sorry, something went wrong.
testusuke
Successfully merging a pull request may close this issue.
概要
フロントエンドの実装を考えて、バックエンド側で外部キーをエンティティーに置き換えてレスポンスする
Refactor: Dependency Injectionを導入
DI,DDDを導入する際にこのissueが解決する
例:
以下のようにusersに置き換える。
タスク
Entity::serializable()関数を再設計or廃止して別のものにするThe text was updated successfully, but these errors were encountered: