OBJECT

FinOpsReportQueryTimeRange

link GraphQL Schema definition

  • type FinOpsReportQueryTimeRange {
  • # Exclude Current Month/Week/Day/Hour from Relative Time Range based on the chosen
  • # Data-Granularity
  • # Used in conjunction with _last_ or with _from_ but without _to_, ignored if _to_
  • # is specified
  • # By Default, current Month/Week/Day/Hour is included in Relative Time Range
  • excludeCurrent: Boolean
  • # Creates a Report from the specified Month/Week/Day/Hour, format changes based on
  • # the chosen Data-Granularity
  • # Monthly: YYYY-MM
  • # Weekly: YYYY-MM-DD
  • # Daily: YYYY-MM-DD
  • # Hourly: YYYY-MM-DD HH:mm
  • from: String
  • # Creates a Report with the Months/Weeks/Days/Hours included in the inclusions,
  • # format changes based on the chosen Data-Granularity
  • # _from_ and _to_ or _last_ cannot be configured if inclusions are configured
  • # Monthly: YYYY-MM
  • # Weekly: YYYY-MM-DD
  • # Daily: YYYY-MM-DD
  • # Hourly: YYYY-MM-DD HH:mm
  • inclusions: [String]
  • # Creates a Report for the last _n_ Months/Weeks/Days/Hours based on the chosen
  • # Data-Granularity
  • # Monthly: last 0: Current Month, last: 1: Current Month + Previous Month and so
  • # on
  • # Weekly: last 0: Current Week, last: 1: Current Week + Previous Week and so on
  • # Daily: last 0: Today, last 1: Yesterday + Today and so on
  • # Hourly: last 0: Current Hour, last 1: Current Hour + Previous Hour and so on
  • # By Default, it picks Current Month/Week/Day/Hour based on the chosen
  • # Data-Granularity: last 0
  • last: Int
  • # Indicates if timeRange provided is for Hour/Day/Week or Month column
  • qualifier: FinOpsReportTimeRangeQualifier
  • # Creates a Report till the specified Month/Week/Day/Hour, format changes based on
  • # the chosen Data-Granularity
  • # Monthly: YYYY-MM
  • # Weekly: YYYY-MM-DD
  • # Daily: YYYY-MM-DD
  • # Hourly: YYYY-MM-DD HH:mm
  • to: String
  • }