OBJECT

TargetsSettings

link GraphQL Schema definition

  • type TargetsSettings {
  • # When true, lead indicators are included in the target calculation.
  • leadsEnabled: Boolean!
  • # When true, working-time indicators (working hours, vacation, holidays, sick
  • # days) are included in the target calculation.
  • workingTimeEnabled: Boolean!
  • # When true, the target value is fixed and not recomputed from the indicators.
  • targetValueLocked: Boolean!
  • # Time period the target applies to.
  • period: TargetsPeriod!
  • # Field-condition filter selecting which records contribute to the target.
  • filter: FieldFilter
  • # Either pipeline_id or lead_process_id depending on type of Target.
  • pipelineLeadProcessId: UUID
  • # Granularity at which target progress is charted — Yearly, Quarterly, Monthly,
  • # Weekly or Daily.
  • chartGranularity: TargetsChartGranularityEnum!
  • # Indicator values computed from historical data, used as defaults.
  • calculatedIndicators: TargetsIndicators!
  • # User-overridden indicator values; each set value takes precedence over the
  • # corresponding calculated indicator.
  • customIndicators: TargetsIndicators!
  • }