OBJECT

DashboardAgenda

link GraphQL Schema definition

  • type DashboardAgenda {
  • # Time window the agenda covers: the next 7 days, the next 30 days, or a custom
  • # number of days set by agendaPeriodCustomDays.
  • agendaPeriod: DashboardAgendaPeriodEnum
  • # Number of upcoming days the agenda covers when agendaPeriod is Custom.
  • agendaPeriodCustomDays: Int!
  • # Filter conditions limiting which tasks and appointments appear in the agenda.
  • agendaFilterActivity: FieldFilter
  • # Filter conditions limiting which opportunities appear in the agenda.
  • agendaFilterOpportunity: FieldFilter
  • # When true, tasks are listed in the agenda.
  • agendaShowTasks: Boolean
  • # When true, appointments are listed in the agenda.
  • agendaShowAppointments: Boolean
  • # When true, opportunities with activity in the period are listed in the agenda.
  • agendaShowOpportunities: Boolean
  • # When true, the opportunity fitness indicator is shown for listed opportunities.
  • agendaShowOpportunityFitness: Boolean
  • # When true, tasks past their due date are also included in the agenda.
  • agendaShowOverdueTasks: Boolean
  • }