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
  • entityRelationId: ID
  • # Entity kind whose related records are aggregated by this rollup.
  • targetEntity: EntityNameEnum!
  • # API name of the target custom entity, set when target_entity is a custom entity.
  • entityApiName: String
  • # How related values are combined — Count, Average, Sum, First, Last, Min or Max.
  • aggregationFunction: RollupFieldAggregationFunctionEnum!
  • # Id of field which is aggregated, null on COUNT or FIRST/LAST when selecting
  • # entity
  • fieldId: ID
  • # Field-condition filter selecting which related records are aggregated.
  • filter: FieldFilter
  • # Id of field which is used for sorting in case of functions Last and First
  • sortFieldId: ID
  • }