Skip to content

Commit 858921c

Browse files
docs-botheiskr
andauthored
GraphQL schema update (#55808)
Co-authored-by: heiskr <[email protected]>
1 parent 287cd95 commit 858921c

File tree

5 files changed

+58
-0
lines changed

5 files changed

+58
-0
lines changed

src/graphql/data/fpt/changelog.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Enum value 'ISSUE_COUNT<code>was added to enum</code>LabelOrderField'</p>",
8+
"<p>Field <code>digest</code> was added to object type <code>ReleaseAsset</code></p>"
9+
]
10+
}
11+
],
12+
"previewChanges": [],
13+
"upcomingChanges": [],
14+
"date": "2025-05-27"
15+
},
216
{
317
"schemaChanges": [
418
{

src/graphql/data/fpt/schema.docs.graphql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20867,6 +20867,11 @@ enum LabelOrderField {
2086720867
"""
2086820868
CREATED_AT
2086920869

20870+
"""
20871+
Order labels by issue count
20872+
"""
20873+
ISSUE_COUNT
20874+
2087020875
"""
2087120876
Order labels by name
2087220877
"""
@@ -44860,6 +44865,11 @@ type ReleaseAsset implements Node {
4486044865
"""
4486144866
createdAt: DateTime!
4486244867

44868+
"""
44869+
The SHA256 digest of the asset
44870+
"""
44871+
digest: String
44872+
4486344873
"""
4486444874
The number of times this asset was downloaded
4486544875
"""

src/graphql/data/fpt/schema.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59045,6 +59045,14 @@
5904559045
"kind": "scalars",
5904659046
"href": "/graphql/reference/scalars#datetime"
5904759047
},
59048+
{
59049+
"name": "digest",
59050+
"description": "<p>The SHA256 digest of the asset.</p>",
59051+
"type": "String",
59052+
"id": "string",
59053+
"kind": "scalars",
59054+
"href": "/graphql/reference/scalars#string"
59055+
},
5904859056
{
5904959057
"name": "downloadCount",
5905059058
"description": "<p>The number of times this asset was downloaded.</p>",
@@ -89560,6 +89568,10 @@
8956089568
"name": "CREATED_AT",
8956189569
"description": "<p>Order labels by creation time.</p>"
8956289570
},
89571+
{
89572+
"name": "ISSUE_COUNT",
89573+
"description": "<p>Order labels by issue count.</p>"
89574+
},
8956389575
{
8956489576
"name": "NAME",
8956589577
"description": "<p>Order labels by name.</p>"

src/graphql/data/ghec/schema.docs.graphql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20867,6 +20867,11 @@ enum LabelOrderField {
2086720867
"""
2086820868
CREATED_AT
2086920869

20870+
"""
20871+
Order labels by issue count
20872+
"""
20873+
ISSUE_COUNT
20874+
2087020875
"""
2087120876
Order labels by name
2087220877
"""
@@ -44860,6 +44865,11 @@ type ReleaseAsset implements Node {
4486044865
"""
4486144866
createdAt: DateTime!
4486244867

44868+
"""
44869+
The SHA256 digest of the asset
44870+
"""
44871+
digest: String
44872+
4486344873
"""
4486444874
The number of times this asset was downloaded
4486544875
"""

src/graphql/data/ghec/schema.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59045,6 +59045,14 @@
5904559045
"kind": "scalars",
5904659046
"href": "/graphql/reference/scalars#datetime"
5904759047
},
59048+
{
59049+
"name": "digest",
59050+
"description": "<p>The SHA256 digest of the asset.</p>",
59051+
"type": "String",
59052+
"id": "string",
59053+
"kind": "scalars",
59054+
"href": "/graphql/reference/scalars#string"
59055+
},
5904859056
{
5904959057
"name": "downloadCount",
5905059058
"description": "<p>The number of times this asset was downloaded.</p>",
@@ -89560,6 +89568,10 @@
8956089568
"name": "CREATED_AT",
8956189569
"description": "<p>Order labels by creation time.</p>"
8956289570
},
89571+
{
89572+
"name": "ISSUE_COUNT",
89573+
"description": "<p>Order labels by issue count.</p>"
89574+
},
8956389575
{
8956489576
"name": "NAME",
8956589577
"description": "<p>Order labels by name.</p>"

0 commit comments

Comments
 (0)