From ab61894373c970f479897840da006ba05a7d8660 Mon Sep 17 00:00:00 2001 From: Mike Kalange Date: Fri, 20 Sep 2024 20:34:37 -0700 Subject: [PATCH] Fix multiline comment --- src/index.tsx | 6 +----- src/schema.gql | 4 +--- 2 files changed, 2 insertions(+), 8 deletions(-) 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 }