diff --git a/data/graphql/ghae/schema.docs-ghae.graphql b/data/graphql/ghae/schema.docs-ghae.graphql index 44a451c8fd..7121477741 100644 --- a/data/graphql/ghae/schema.docs-ghae.graphql +++ b/data/graphql/ghae/schema.docs-ghae.graphql @@ -33508,6 +33508,11 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su """ allowUpdateBranch: Boolean! + """ + Identifies the date and time when the repository was archived. + """ + archivedAt: DateTime + """ A list of users that can be assigned to issues in this repository. """ @@ -34554,7 +34559,7 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su ): PullRequestConnection! """ - Identifies when the repository was last pushed to. + Identifies the date and time when the repository was last pushed to. """ pushedAt: DateTime @@ -35281,6 +35286,11 @@ type RepositoryEdge { A subset of repository info. """ interface RepositoryInfo { + """ + Identifies the date and time when the repository was archived. + """ + archivedAt: DateTime + """ Identifies the date and time when the object was created. """ @@ -35402,7 +35412,7 @@ interface RepositoryInfo { owner: RepositoryOwner! """ - Identifies when the repository was last pushed to. + Identifies the date and time when the repository was last pushed to. """ pushedAt: DateTime diff --git a/data/graphql/ghec/schema.docs.graphql b/data/graphql/ghec/schema.docs.graphql index dcca7eedc4..a1272ec9b2 100644 --- a/data/graphql/ghec/schema.docs.graphql +++ b/data/graphql/ghec/schema.docs.graphql @@ -40234,6 +40234,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent """ allowUpdateBranch: Boolean! + """ + Identifies the date and time when the repository was archived. + """ + archivedAt: DateTime + """ A list of users that can be assigned to issues in this repository. """ @@ -41375,7 +41380,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent ): PullRequestConnection! """ - Identifies when the repository was last pushed to. + Identifies the date and time when the repository was last pushed to. """ pushedAt: DateTime @@ -42127,6 +42132,11 @@ type RepositoryEdge { A subset of repository info. """ interface RepositoryInfo { + """ + Identifies the date and time when the repository was archived. + """ + archivedAt: DateTime + """ Identifies the date and time when the object was created. """ @@ -42243,7 +42253,7 @@ interface RepositoryInfo { owner: RepositoryOwner! """ - Identifies when the repository was last pushed to. + Identifies the date and time when the repository was last pushed to. """ pushedAt: DateTime diff --git a/data/graphql/schema.docs.graphql b/data/graphql/schema.docs.graphql index dcca7eedc4..a1272ec9b2 100644 --- a/data/graphql/schema.docs.graphql +++ b/data/graphql/schema.docs.graphql @@ -40234,6 +40234,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent """ allowUpdateBranch: Boolean! + """ + Identifies the date and time when the repository was archived. + """ + archivedAt: DateTime + """ A list of users that can be assigned to issues in this repository. """ @@ -41375,7 +41380,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent ): PullRequestConnection! """ - Identifies when the repository was last pushed to. + Identifies the date and time when the repository was last pushed to. """ pushedAt: DateTime @@ -42127,6 +42132,11 @@ type RepositoryEdge { A subset of repository info. """ interface RepositoryInfo { + """ + Identifies the date and time when the repository was archived. + """ + archivedAt: DateTime + """ Identifies the date and time when the object was created. """ @@ -42243,7 +42253,7 @@ interface RepositoryInfo { owner: RepositoryOwner! """ - Identifies when the repository was last pushed to. + Identifies the date and time when the repository was last pushed to. """ pushedAt: DateTime diff --git a/src/graphql/data/dotcom/changelog.json b/src/graphql/data/dotcom/changelog.json index f48d6cd021..f03af1ba2a 100644 --- a/src/graphql/data/dotcom/changelog.json +++ b/src/graphql/data/dotcom/changelog.json @@ -1,4 +1,18 @@ [ + { + "schemaChanges": [ + { + "title": "The GraphQL schema includes these changes:", + "changes": [ + "
Field archivedAt was added to object type Repository
Field archivedAt was added to interface RepositoryInfo
Identifies the date and time when the repository was archived.
", + "type": "DateTime", + "id": "datetime", + "kind": "scalars", + "href": "/graphql/reference/scalars#datetime" + }, { "name": "assignableUsers", "description": "A list of users that can be assigned to issues in this repository.
", @@ -57690,7 +57698,7 @@ }, { "name": "pushedAt", - "description": "Identifies when the repository was last pushed to.
", + "description": "Identifies the date and time when the repository was last pushed to.
", "type": "DateTime", "id": "datetime", "kind": "scalars", @@ -73993,6 +74001,14 @@ "href": "/graphql/reference/interfaces#repositoryinfo", "description": "A subset of repository info.
", "fields": [ + { + "name": "archivedAt", + "description": "Identifies the date and time when the repository was archived.
", + "type": "DateTime", + "id": "datetime", + "kind": "scalars", + "href": "/graphql/reference/scalars#datetime" + }, { "name": "createdAt", "description": "Identifies the date and time when the object was created.
", @@ -74179,7 +74195,7 @@ }, { "name": "pushedAt", - "description": "Identifies when the repository was last pushed to.
", + "description": "Identifies the date and time when the repository was last pushed to.
", "type": "DateTime", "id": "datetime", "kind": "scalars", diff --git a/src/graphql/data/ghae/schema.json b/src/graphql/data/ghae/schema.json index c421f44e76..f4dd9c0c1f 100644 --- a/src/graphql/data/ghae/schema.json +++ b/src/graphql/data/ghae/schema.json @@ -46706,6 +46706,14 @@ "kind": "scalars", "href": "/graphql/reference/scalars#boolean" }, + { + "name": "archivedAt", + "description": "Identifies the date and time when the repository was archived.
", + "type": "DateTime", + "id": "datetime", + "kind": "scalars", + "href": "/graphql/reference/scalars#datetime" + }, { "name": "assignableUsers", "description": "A list of users that can be assigned to issues in this repository.
", @@ -48714,7 +48722,7 @@ }, { "name": "pushedAt", - "description": "Identifies when the repository was last pushed to.
", + "description": "Identifies the date and time when the repository was last pushed to.
", "type": "DateTime", "id": "datetime", "kind": "scalars", @@ -62007,6 +62015,14 @@ "href": "/graphql/reference/interfaces#repositoryinfo", "description": "A subset of repository info.
", "fields": [ + { + "name": "archivedAt", + "description": "Identifies the date and time when the repository was archived.
", + "type": "DateTime", + "id": "datetime", + "kind": "scalars", + "href": "/graphql/reference/scalars#datetime" + }, { "name": "createdAt", "description": "Identifies the date and time when the object was created.
", @@ -62201,7 +62217,7 @@ }, { "name": "pushedAt", - "description": "Identifies when the repository was last pushed to.
", + "description": "Identifies the date and time when the repository was last pushed to.
", "type": "DateTime", "id": "datetime", "kind": "scalars", diff --git a/src/graphql/data/ghec/schema.json b/src/graphql/data/ghec/schema.json index 71b087396f..4a433ecbdf 100644 --- a/src/graphql/data/ghec/schema.json +++ b/src/graphql/data/ghec/schema.json @@ -55494,6 +55494,14 @@ "kind": "scalars", "href": "/graphql/reference/scalars#boolean" }, + { + "name": "archivedAt", + "description": "Identifies the date and time when the repository was archived.
", + "type": "DateTime", + "id": "datetime", + "kind": "scalars", + "href": "/graphql/reference/scalars#datetime" + }, { "name": "assignableUsers", "description": "A list of users that can be assigned to issues in this repository.
", @@ -57690,7 +57698,7 @@ }, { "name": "pushedAt", - "description": "Identifies when the repository was last pushed to.
", + "description": "Identifies the date and time when the repository was last pushed to.
", "type": "DateTime", "id": "datetime", "kind": "scalars", @@ -73993,6 +74001,14 @@ "href": "/graphql/reference/interfaces#repositoryinfo", "description": "A subset of repository info.
", "fields": [ + { + "name": "archivedAt", + "description": "Identifies the date and time when the repository was archived.
", + "type": "DateTime", + "id": "datetime", + "kind": "scalars", + "href": "/graphql/reference/scalars#datetime" + }, { "name": "createdAt", "description": "Identifies the date and time when the object was created.
", @@ -74179,7 +74195,7 @@ }, { "name": "pushedAt", - "description": "Identifies when the repository was last pushed to.
", + "description": "Identifies the date and time when the repository was last pushed to.
", "type": "DateTime", "id": "datetime", "kind": "scalars",