OBJECT

ReportHistoryComparisonDate

link GraphQL Schema definition

  • type ReportHistoryComparisonDate {
  • # Unique identifier of this comparison date.
  • id: UUID!
  • # Fixed calendar date to compare against; set when neither a dynamic date nor a
  • # special value is used.
  • date: Date
  • # Ordered date operations evaluated against today to produce a relative comparison
  • # date, such as the start of the previous quarter.
  • dynamicDate: [ReportHistoryDynamicDate!]
  • # Whether the dynamic date was built from custom operations rather than chosen
  • # from a predefined relative-date option.
  • isDynamicDateCustom: Boolean!
  • # Special comparison value instead of a date: FirstValue compares against the
  • # first recorded value and PreviousValue against the preceding one.
  • specialValue: ReportHistorySpecialValue
  • }