OBJECT
RollupProperty
link GraphQL Schema definition
- type RollupProperty {
- # Id of entity_relation or field_id of field from custom relation on source entity
- # of lookup field
- : ID
- # Entity kind whose related records are aggregated by this rollup.
- : EntityNameEnum!
- # API name of the target custom entity, set when target_entity is a custom entity.
- : String
- # How related values are combined — Count, Average, Sum, First, Last, Min or Max.
- : RollupFieldAggregationFunctionEnum!
- # Id of field which is aggregated, null on COUNT or FIRST/LAST when selecting
- # entity
- : ID
- # Field-condition filter selecting which related records are aggregated.
- : FieldFilter
- # Id of field which is used for sorting in case of functions Last and First
- : ID
- }