Skip to content

Commit

Permalink
Clarify nested BelongsTo docs
Browse files Browse the repository at this point in the history
  • Loading branch information
spawnia committed Oct 6, 2023
1 parent 51c77ba commit 2d59623
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/6/eloquent/nested-mutations.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ A nested `BelongsTo` relationship exposes the following operations:
- `disconnect` the related model
- `delete` the related model and the association to it

Both `disconnect` and `delete` don't make much sense in the context of an update.
Both `disconnect` and `delete` don't make much sense when creating a new model.
You can control what operations are possible by defining just what you need in the `input`.
We choose to expose the following operations on the related `User` model:

Expand Down
2 changes: 1 addition & 1 deletion docs/master/eloquent/nested-mutations.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ A nested `BelongsTo` relationship exposes the following operations:
- `disconnect` the related model
- `delete` the related model and the association to it

Both `disconnect` and `delete` don't make much sense in the context of an update.
Both `disconnect` and `delete` don't make much sense when creating a new model.
You can control what operations are possible by defining just what you need in the `input`.
We choose to expose the following operations on the related `User` model:

Expand Down

0 comments on commit 2d59623

Please sign in to comment.