diff --git a/data/graphql/ghae/schema.docs-ghae.graphql b/data/graphql/ghae/schema.docs-ghae.graphql index 56aa57277b..63a486f908 100644 --- a/data/graphql/ghae/schema.docs-ghae.graphql +++ b/data/graphql/ghae/schema.docs-ghae.graphql @@ -23926,6 +23926,11 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod type: PinnableItemType ): Boolean! + """ + Identifies the date and time when the organization was archived. + """ + archivedAt: DateTime + """ Audit log entries of the organization """ diff --git a/data/graphql/ghec/schema.docs.graphql b/data/graphql/ghec/schema.docs.graphql index f7e69b89e3..bd770af3b7 100644 --- a/data/graphql/ghec/schema.docs.graphql +++ b/data/graphql/ghec/schema.docs.graphql @@ -27271,6 +27271,11 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod type: PinnableItemType ): Boolean! + """ + Identifies the date and time when the organization was archived. + """ + archivedAt: DateTime + """ Audit log entries of the organization """ diff --git a/data/graphql/schema.docs.graphql b/data/graphql/schema.docs.graphql index f7e69b89e3..bd770af3b7 100644 --- a/data/graphql/schema.docs.graphql +++ b/data/graphql/schema.docs.graphql @@ -27271,6 +27271,11 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod type: PinnableItemType ): Boolean! + """ + Identifies the date and time when the organization was archived. + """ + archivedAt: DateTime + """ Audit log entries of the organization """ diff --git a/src/audit-logs/lib/config.json b/src/audit-logs/lib/config.json index 693d7e35fc..f218c0d495 100644 --- a/src/audit-logs/lib/config.json +++ b/src/audit-logs/lib/config.json @@ -1,3 +1,3 @@ { - "sha": "5e89c323e6faeb51983c291889ae7a753c034f65" + "sha": "e680ec9630baac564d42ed50fd5804471cc6cdfa" } \ No newline at end of file diff --git a/src/graphql/data/fpt/changelog.json b/src/graphql/data/fpt/changelog.json index b1c1a07de6..d4b8412bfd 100644 --- a/src/graphql/data/fpt/changelog.json +++ b/src/graphql/data/fpt/changelog.json @@ -1,4 +1,17 @@ [ + { + "schemaChanges": [ + { + "title": "The GraphQL schema includes these changes:", + "changes": [ + "
Field archivedAt was added to object type Organization
Identifies the date and time when the organization was archived.
", + "type": "DateTime", + "id": "datetime", + "kind": "scalars", + "href": "/graphql/reference/scalars#datetime" + }, { "name": "auditLog", "description": "Audit log entries of the organization.
", diff --git a/src/graphql/data/ghae/schema.json b/src/graphql/data/ghae/schema.json index aa61d2d857..43eca34030 100644 --- a/src/graphql/data/ghae/schema.json +++ b/src/graphql/data/ghae/schema.json @@ -33309,6 +33309,14 @@ } ] }, + { + "name": "archivedAt", + "description": "Identifies the date and time when the organization was archived.
", + "type": "DateTime", + "id": "datetime", + "kind": "scalars", + "href": "/graphql/reference/scalars#datetime" + }, { "name": "auditLog", "description": "Audit log entries of the organization.
", diff --git a/src/graphql/data/ghec/schema.json b/src/graphql/data/ghec/schema.json index bc9daf5cf9..aef0cd9ac5 100644 --- a/src/graphql/data/ghec/schema.json +++ b/src/graphql/data/ghec/schema.json @@ -37842,6 +37842,14 @@ } ] }, + { + "name": "archivedAt", + "description": "Identifies the date and time when the organization was archived.
", + "type": "DateTime", + "id": "datetime", + "kind": "scalars", + "href": "/graphql/reference/scalars#datetime" + }, { "name": "auditLog", "description": "Audit log entries of the organization.
",