Skip to content

Commit d4b7bc5

Browse files
octokitbotOctokit Botgr2m
authored
fix(comments): clarify GitObject#{since,until} (#955)
* build: schema.json and schema.d.ts updated * update schema --------- Co-authored-by: Octokit Bot <octokitbot@martynus.net> Co-authored-by: Gregor Martynus <39992+gr2m@users.noreply.github.com>
1 parent a7b88f3 commit d4b7bc5

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

schema.graphql

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4865,12 +4865,14 @@ type Commit implements GitObject & Node & Subscribable & UniformResourceLocatabl
48654865
path: String
48664866

48674867
"""
4868-
Allows specifying a beginning time or date for fetching commits.
4868+
Allows specifying a beginning time or date for fetching commits. Unexpected
4869+
results may be returned for dates not between 1970-01-01 and 2099-12-13 (inclusive).
48694870
"""
48704871
since: GitTimestamp
48714872

48724873
"""
4873-
Allows specifying an ending time or date for fetching commits.
4874+
Allows specifying an ending time or date for fetching commits. Unexpected
4875+
results may be returned for dates not between 1970-01-01 and 2099-12-13 (inclusive).
48744876
"""
48754877
until: GitTimestamp
48764878
): CommitHistoryConnection!

schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12549,7 +12549,7 @@
1254912549
},
1255012550
{
1255112551
"name": "since",
12552-
"description": "Allows specifying a beginning time or date for fetching commits.",
12552+
"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).",
1255312553
"type": {
1255412554
"kind": "SCALAR",
1255512555
"name": "GitTimestamp",
@@ -12559,7 +12559,7 @@
1255912559
},
1256012560
{
1256112561
"name": "until",
12562-
"description": "Allows specifying an ending time or date for fetching commits.",
12562+
"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).",
1256312563
"type": {
1256412564
"kind": "SCALAR",
1256512565
"name": "GitTimestamp",

0 commit comments

Comments
 (0)