Fix multiline comment

This commit is contained in:
Mike Kalange 2024-09-20 20:34:37 -07:00
parent 662e0ade64
commit ab61894373
2 changed files with 2 additions and 8 deletions

View File

@ -1915,11 +1915,7 @@ export type TargetMetricsGql = {
}; };
export type TimeInterval = { export type TimeInterval = {
/** /** True eg 1/15-3/15 => [(1/15,1/31), (2/1,2/28), (3/1,3/15)] False eg 1/15-2/15 => [(1/15,2/14), (2/14,3/15)] */
* Example usage:
* True eg 1/15-3/15 => [(1/15,1/31), (2/1,2/28), (3/1,3/15)]
* False eg 1/15-2/15 => [(1/15,2/15), (2/16,3/15)]
*/
calendarAlignedMonths?: Scalars["Boolean"]["input"]; calendarAlignedMonths?: Scalars["Boolean"]["input"];
days?: InputMaybe<Scalars["Int"]["input"]>; days?: InputMaybe<Scalars["Int"]["input"]>;
hours?: InputMaybe<Scalars["Int"]["input"]>; hours?: InputMaybe<Scalars["Int"]["input"]>;

View File

@ -124,9 +124,7 @@ input TimeInterval {
years: Int = 0 years: Int = 0
""" """
Example usage: True eg 1/15-3/15 => [(1/15,1/31), (2/1,2/28), (3/1,3/15)] False eg 1/15-2/15 => [(1/15,2/14), (2/14,3/15)]
True eg 1/15-3/15 => [(1/15,1/31), (2/1,2/28), (3/1,3/15)]
False eg 1/15-2/15 => [(1/15,2/15), (2/16,3/15)]
""" """
calendarAlignedMonths: Boolean! = true calendarAlignedMonths: Boolean! = true
} }