diff --git a/src/index.tsx b/src/index.tsx index 62c35c4..4c55804 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1915,11 +1915,7 @@ export type TargetMetricsGql = { }; export type TimeInterval = { - /** - * 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)] - */ + /** 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)] */ calendarAlignedMonths?: Scalars["Boolean"]["input"]; days?: InputMaybe; hours?: InputMaybe; diff --git a/src/schema.gql b/src/schema.gql index 20dc7d8..ee70b9b 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -124,9 +124,7 @@ input TimeInterval { 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/15), (2/16,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/14), (2/14,3/15)] """ calendarAlignedMonths: Boolean! = true }