Value

This partitioning function is the simplest one. It partitions elements according to a grouping key.

If the grouping key is a list, the collectionPolicy specifies how to handle it with one of the following values.

See Also
Operators
Expression Language
Defining and Managing Data Queries
Value Description
"LIST" (default value) The list is used as a grouping key entirely. For example, one group for ["a", "b"], another for one ["a", "c"], etc.
"EACH_ELEMENT" Each item of the list is used as a grouping key separately. For example, an element with ["a", "b", "c"] would appear in 3 partitions: "a", "b", and "c".
"EACH_SUBLIST" Each prefix sublist of the list is used as a grouping key separately. For example, an element with ["a", "b", "c"] would appear in 3 partitions: ["a"], ["a", "b"], and ["a", "b", "c"]