Skip to content
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

TASK: Document that scatter does NOT move fallbacks! #5388

Open
wants to merge 1 commit into
base: 9.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,14 @@
namespace Neos\ContentRepository\Core\Feature\NodeMove\Dto;

/**
* The relation distribution strategy for node aggregates as defined in the NodeType declaration
* The relation distribution strategy for node aggregates
*
* Used for building relations to other node aggregates
*
* - `scatter` means that different nodes within the aggregate may be related to different other aggregates
* (e.g. parent).
* Still, specializations pointing to the same node using the fallback mechanism will be kept gathered.
* - `scatter` means that different nodes within the aggregate may be related to different other aggregates (e.g. parent).
* - `gatherAll` means that all nodes within the aggregate must be related to the same other aggregate (e.g. parent)
* - `gatherSpecializations` means that when a node is related to another node aggregate (e.g. parent),
* all specializations of that node will be related to that same aggregate while generalizations
* may be related to others
* all specializations of that node will be related to that same aggregate while generalizations may be related to others
*
* @api DTO of {@see MoveNodeAggregate} command
*/
Expand Down