diff --git a/src/graphql/data/fpt/changelog.json b/src/graphql/data/fpt/changelog.json index 0021a6ddcdf3..58e25b32d961 100644 --- a/src/graphql/data/fpt/changelog.json +++ b/src/graphql/data/fpt/changelog.json @@ -1,4 +1,18 @@ [ + { + "schemaChanges": [ + { + "title": "The GraphQL schema includes these changes:", + "changes": [ + "

Field readme was added to object type Enterprise

", + "

Field readmeHTML was added to object type Enterprise

" + ] + } + ], + "previewChanges": [], + "upcomingChanges": [], + "date": "2024-06-14" + }, { "schemaChanges": [ { diff --git a/src/graphql/data/fpt/schema.docs.graphql b/src/graphql/data/fpt/schema.docs.graphql index 92ca8cb7b632..1a8de0b72269 100644 --- a/src/graphql/data/fpt/schema.docs.graphql +++ b/src/graphql/data/fpt/schema.docs.graphql @@ -12818,6 +12818,16 @@ type Enterprise implements AnnouncementBanner & Node { """ ownerInfo: EnterpriseOwnerInfo + """ + The raw content of the enterprise README. + """ + readme: String + + """ + The content of the enterprise README as HTML. + """ + readmeHTML: HTML! + """ The HTTP path for this enterprise. """ diff --git a/src/graphql/data/fpt/schema.json b/src/graphql/data/fpt/schema.json index 05a6568eebad..a1300aae6202 100644 --- a/src/graphql/data/fpt/schema.json +++ b/src/graphql/data/fpt/schema.json @@ -21177,6 +21177,22 @@ "kind": "objects", "href": "/graphql/reference/objects#enterpriseownerinfo" }, + { + "name": "readme", + "description": "

The raw content of the enterprise README.

", + "type": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + }, + { + "name": "readmeHTML", + "description": "

The content of the enterprise README as HTML.

", + "type": "HTML!", + "id": "html", + "kind": "scalars", + "href": "/graphql/reference/scalars#html" + }, { "name": "resourcePath", "description": "

The HTTP path for this enterprise.

", diff --git a/src/graphql/data/ghec/schema.docs.graphql b/src/graphql/data/ghec/schema.docs.graphql index 92ca8cb7b632..1a8de0b72269 100644 --- a/src/graphql/data/ghec/schema.docs.graphql +++ b/src/graphql/data/ghec/schema.docs.graphql @@ -12818,6 +12818,16 @@ type Enterprise implements AnnouncementBanner & Node { """ ownerInfo: EnterpriseOwnerInfo + """ + The raw content of the enterprise README. + """ + readme: String + + """ + The content of the enterprise README as HTML. + """ + readmeHTML: HTML! + """ The HTTP path for this enterprise. """ diff --git a/src/graphql/data/ghec/schema.json b/src/graphql/data/ghec/schema.json index 05a6568eebad..a1300aae6202 100644 --- a/src/graphql/data/ghec/schema.json +++ b/src/graphql/data/ghec/schema.json @@ -21177,6 +21177,22 @@ "kind": "objects", "href": "/graphql/reference/objects#enterpriseownerinfo" }, + { + "name": "readme", + "description": "

The raw content of the enterprise README.

", + "type": "String", + "id": "string", + "kind": "scalars", + "href": "/graphql/reference/scalars#string" + }, + { + "name": "readmeHTML", + "description": "

The content of the enterprise README as HTML.

", + "type": "HTML!", + "id": "html", + "kind": "scalars", + "href": "/graphql/reference/scalars#html" + }, { "name": "resourcePath", "description": "

The HTTP path for this enterprise.

",