From d4b7bc59bb154df588c4fa7300b740b060c8765e Mon Sep 17 00:00:00 2001 From: Octokit Bot Date: Tue, 11 Jun 2024 14:30:41 -0500 Subject: [PATCH] fix(comments): clarify `GitObject#{since,until}` (#955) * build: schema.json and schema.d.ts updated * update schema --------- Co-authored-by: Octokit Bot Co-authored-by: Gregor Martynus <39992+gr2m@users.noreply.github.com> --- schema.graphql | 6 ++++-- schema.json | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/schema.graphql b/schema.graphql index 9a14750fd..e76349aa9 100644 --- a/schema.graphql +++ b/schema.graphql @@ -4865,12 +4865,14 @@ type Commit implements GitObject & Node & Subscribable & UniformResourceLocatabl path: String """ - Allows specifying a beginning time or date for fetching commits. + Allows specifying a beginning time or date for fetching commits. Unexpected + results may be returned for dates not between 1970-01-01 and 2099-12-13 (inclusive). """ since: GitTimestamp """ - Allows specifying an ending time or date for fetching commits. + Allows specifying an ending time or date for fetching commits. Unexpected + results may be returned for dates not between 1970-01-01 and 2099-12-13 (inclusive). """ until: GitTimestamp ): CommitHistoryConnection! diff --git a/schema.json b/schema.json index 63f1e38a6..ef651dbf1 100644 --- a/schema.json +++ b/schema.json @@ -12549,7 +12549,7 @@ }, { "name": "since", - "description": "Allows specifying a beginning time or date for fetching commits.", + "description": "Allows specifying a beginning time or date for fetching commits. Unexpected results may be returned for dates not between 1970-01-01 and 2099-12-13 (inclusive).", "type": { "kind": "SCALAR", "name": "GitTimestamp", @@ -12559,7 +12559,7 @@ }, { "name": "until", - "description": "Allows specifying an ending time or date for fetching commits.", + "description": "Allows specifying an ending time or date for fetching commits. Unexpected results may be returned for dates not between 1970-01-01 and 2099-12-13 (inclusive).", "type": { "kind": "SCALAR", "name": "GitTimestamp",